diff --git a/nw/__init__.py b/nw/__init__.py index ce005764..e0696373 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -172,7 +172,7 @@ def main(sysArgs=None): debugLevel = logging.INFO elif inOpt == "--debug": debugLevel = logging.DEBUG - logFormat = "[{asctime:}] {name:>22}:{lineno:<4d} {levelname:8} {message:}" + logFormat = "[{asctime:}] {name:>20}:{lineno:<4d} {levelname:8} {message:}" elif inOpt == "--logfile": logFile = inArg toFile = True @@ -180,7 +180,7 @@ def main(sysArgs=None): toStd = False elif inOpt == "--verbose": debugLevel = VERBOSE - logFormat = "[{asctime:}] {name:>22}:{lineno:<4d} {levelname:8} {message:}" + logFormat = "[{asctime:}] {name:>20}:{lineno:<4d} {levelname:8} {message:}" elif inOpt == "--style": qtStyle = inArg elif inOpt == "--config": diff --git a/nw/gui/__init__.py b/nw/gui/__init__.py index 1156abc0..335c6b8f 100644 --- a/nw/gui/__init__.py +++ b/nw/gui/__init__.py @@ -15,8 +15,8 @@ from nw.gui.itemeditor import GuiItemEditor from nw.gui.mainmenu import GuiMainMenu from nw.gui.outline import GuiProjectOutline from nw.gui.preferences import GuiPreferences -from nw.gui.projectload import GuiProjectLoad -from nw.gui.projectsettings import GuiProjectSettings +from nw.gui.projload import GuiProjectLoad +from nw.gui.projsettings import GuiProjectSettings from nw.gui.sessionlog import GuiSessionLogView from nw.gui.statusbar import GuiMainStatus from nw.gui.theme import GuiIcons diff --git a/nw/gui/projectload.py b/nw/gui/projload.py similarity index 100% rename from nw/gui/projectload.py rename to nw/gui/projload.py diff --git a/nw/gui/projectsettings.py b/nw/gui/projsettings.py similarity index 100% rename from nw/gui/projectsettings.py rename to nw/gui/projsettings.py