diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-01-27 16:01:36 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-01-27 16:01:36 +0100 |
commit | 6224da7a5810ef8a9309bc0fd919759e832edcf6 (patch) | |
tree | 0e5c56f17254930a1e0803571edf71084614d1f8 /portato/gui/windows | |
parent | 0e82f9ea0df374f32eda8b63401f1f2296c79ec9 (diff) | |
download | portato-6224da7a5810ef8a9309bc0fd919759e832edcf6.tar.gz portato-6224da7a5810ef8a9309bc0fd919759e832edcf6.tar.bz2 portato-6224da7a5810ef8a9309bc0fd919759e832edcf6.zip |
Fix and use the features of previous revision
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 970dcba..f18ca24 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -993,7 +993,7 @@ class MainWindow (Window): Loads the session data. """ try: - self.session = Session("gtk_session.cfg") + self.session = Session("gui.cfg", name="GUI", oldfiles=["gtk_session.cfg"]) except (OSError, IOError), e: io_ex_dialog(e) return |