diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-09-06 02:01:24 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-09-06 02:01:24 +0200 |
commit | 82a7ed53f40fa4e7dd6f716b5150b2f1374ae93b (patch) | |
tree | 3e597652e7538522e3ab80a158f5397336c550b1 /portato/gui | |
parent | aeffd6bb3e77545ac6de777c4b0c9f3024ae654f (diff) | |
download | portato-82a7ed53f40fa4e7dd6f716b5150b2f1374ae93b.tar.gz portato-82a7ed53f40fa4e7dd6f716b5150b2f1374ae93b.tar.bz2 portato-82a7ed53f40fa4e7dd6f716b5150b2f1374ae93b.zip |
Re-formulate the debug message if a menu file has been found.
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/basic.py b/portato/gui/windows/basic.py index cab2fb9..542cf7f 100644 --- a/portato/gui/windows/basic.py +++ b/portato/gui/windows/basic.py @@ -87,7 +87,7 @@ class UIBuilder (object): # load menu if existing menufile = os.path.join(TEMPLATE_DIR, self.__file__+".menu") if os.path.exists(menufile): - debug("Menufile for '%s' exists.", self.__file__) + debug("There is a menu-file for '%s'. Trying to load it.", self.__file__) barbox = self.tree.get_widget("menubar_box") if barbox is not None: self._builder.add_from_file(menufile) |