diff options
-rw-r--r-- | doc/Changelog | 5 | ||||
-rw-r--r-- | portato/extern/__init__.py | 0 | ||||
-rw-r--r-- | portato/plugin.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 2 insertions, 7 deletions
diff --git a/doc/Changelog b/doc/Changelog index 574b39c..46f2030 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -6,11 +6,6 @@ - added systray - added "noroot"-plugin, allowing emerges if not root -- added confirmation dialogs for quitting while the emerge queue is not empty -- added icon and desktop-files -- added systray -- added "noroot"-plugin, allowing emerges if not root - 0.7.0: - showed difference between unmasked and masked but unmasked by yourself - added Qt-Frontend diff --git a/portato/extern/__init__.py b/portato/extern/__init__.py deleted file mode 100644 index e69de29..0000000 --- a/portato/extern/__init__.py +++ /dev/null diff --git a/portato/plugin.py b/portato/plugin.py index a49be74..e6ceb89 100644 --- a/portato/plugin.py +++ b/portato/plugin.py @@ -368,7 +368,7 @@ class PluginQueue: frontendOK = False if frontendOK is None or frontendOK == True: - plugin = Plugin(p, str(elem.getAttribute("name")), str(elem.getAttribute("author"))) + plugin = Plugin(p, elem.getAttribute("name"), elem.getAttribute("author")) plugin.parse_hooks(elem.getElementsByTagName("hook")) plugin.set_import(elem.getElementsByTagName("import")) plugin.parse_menus(elem.getElementsByTagName("menu")) @@ -5,7 +5,7 @@ import os, os.path from distutils.core import setup, Extension from portato.constants import VERSION, DATA_DIR, FRONTENDS, ICON_DIR -packages = ["portato", "portato.gui", "portato.plugins", "portato.backend", "portato.backend.portage", "portato.extern"] +packages = ["portato", "portato.gui", "portato.plugins", "portato.backend", "portato.backend.portage"] ext_modules = [] data_files = [(ICON_DIR, ["icons/portato-icon.png"])] cmdclass = {} |