summaryrefslogtreecommitdiff
path: root/portato/gui
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-14 18:56:10 +0100
commitc0ef9b8f98eaf9fe46b87759d8083a8bd24620fa (patch)
tree4cc5f635470fc51e71146a797f28eb152b00cfb5 /portato/gui
parent42c9e86bd9fe4d48f58e4688c0cdcd8f0066afb1 (diff)
downloadportato-c0ef9b8f98eaf9fe46b87759d8083a8bd24620fa.tar.gz
portato-c0ef9b8f98eaf9fe46b87759d8083a8bd24620fa.tar.bz2
portato-c0ef9b8f98eaf9fe46b87759d8083a8bd24620fa.zip
Rewrote Session as to use the normal ConfigParser and not our own one
(cherry picked from commit 397a31e6deb851de102bca3d7c8d754f40b0656d)
Diffstat (limited to '')
-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 a06756d..bc40a1f 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)):
Necoro4-10/+50 2008-01-11 r597@Devoty: necoro | 2008-01-10 14:12:35 +0100Necoro1-3/+3 2008-01-10 r595@Devoty: necoro | 2008-01-10 04:04:15 +0100Necoro1-52/+3 2008-01-09 r586@Devoty: necoro | 2008-01-09 14:54:18 +0100Necoro1-1/+1 2007-12-06 r577@Devoty: necoro | 2007-12-06 20:37:36 +0100Necoro1-1/+1 2007-12-06 r572@Devoty: necoro | 2007-11-28 08:48:15 +0100Necoro1-0/+1 2007-11-27 r570@Devoty: necoro | 2007-11-27 02:08:21 +0100Necoro3-84/+108