summaryrefslogtreecommitdiff
path: root/portato/gui/windows/main.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-03-06 16:26:29 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-03-06 16:26:29 +0100
commit397a31e6deb851de102bca3d7c8d754f40b0656d (patch)
tree1f44998f155b34589acbe4a7cf9c2719caecfb3e /portato/gui/windows/main.py
parent2a87314dbcb6bf18fefe1024d831f3cdb463c766 (diff)
downloadportato-397a31e6deb851de102bca3d7c8d754f40b0656d.tar.gz
portato-397a31e6deb851de102bca3d7c8d754f40b0656d.tar.bz2
portato-397a31e6deb851de102bca3d7c8d754f40b0656d.zip
Rewrote Session as to use the normal ConfigParser and not our own one
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r--portato/gui/windows/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py
index 8f4b04a..cd4cf24 100644
--- a/portato/gui/windows/main.py
+++ b/portato/gui/windows/main.py
@@ -1070,7 +1070,7 @@ class MainWindow (Window):
queue = plugin.get_plugin_queue()
if queue:
for p in queue.get_plugins():
- self.session.add_handler(([(p.name.replace(" ","_"), "plugins")], load_plugin(p), save_plugin(p)))
+ self.session.add_handler(([(p.name.replace(" ","_").replace(":","_"), "plugins")], load_plugin(p), save_plugin(p)))
# the other things
def load_cfg ((name, cat)):