Skip to content

Commit 6045b38

Browse files
committed
gmoccapy: fix log level for imported modules (#3768)
1 parent 08b838a commit 6045b38

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/emc/usr_intf/gmoccapy/gmoccapy.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
import gettext # to extract the strings to be translated
4848
from collections import OrderedDict # needed for proper jog button arrangement
4949
from time import strftime # needed for the clock in the GUI
50-
from gladevcp.core import Status
5150

5251
# Throws up a dialog with debug info when an error is encountered
5352
def excepthook(exc_type, exc_obj, exc_tb):
@@ -6430,7 +6429,7 @@ def _make_hal_pins(self):
64306429

64316430
# Some of these libraries log when imported so logging level must already be set.
64326431
import gladevcp.makepins
6433-
from gladevcp.core import Info
6432+
from gladevcp.core import Info, Status
64346433
from gladevcp.combi_dro import Combi_DRO # we will need it to make the DRO
64356434
from gmoccapy import widgets # a class to handle the widgets
64366435

0 commit comments

Comments
 (0)