diff options
author | necoro <> | 2007-04-26 17:12:05 +0000 |
---|---|---|
committer | necoro <> | 2007-04-26 17:12:05 +0000 |
commit | 83dad864f08fb5bb6a362631c7418814c01e84e4 (patch) | |
tree | b69daafea5bf5f14740820084f7842b4bb87dd53 /portato | |
parent | e1b8aae4e2e08e7b2b2cf76a33b98975136ede63 (diff) | |
download | portato-83dad864f08fb5bb6a362631c7418814c01e84e4.tar.gz portato-83dad864f08fb5bb6a362631c7418814c01e84e4.tar.bz2 portato-83dad864f08fb5bb6a362631c7418814c01e84e4.zip |
some more fixed bugs
Diffstat (limited to '')
-rw-r--r-- | portato/extern/__init__.py | 0 | ||||
-rw-r--r-- | portato/plugin.py | 2 |
2 files changed, 1 insertions, 1 deletions
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")) |