diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-09 22:41:52 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-09 22:41:52 +0100 |
commit | 60c9d2fbf81163f1c86633094048b3bb79cc22dc (patch) | |
tree | bcdbab424b29e0c66da46f507b99ce768fbd417b /portato/session.py | |
parent | 7c06ac66c161cc8b4110999dc2bf2f2a98ae574b (diff) | |
download | portato-60c9d2fbf81163f1c86633094048b3bb79cc22dc.tar.gz portato-60c9d2fbf81163f1c86633094048b3bb79cc22dc.tar.bz2 portato-60c9d2fbf81163f1c86633094048b3bb79cc22dc.zip |
Small changes
Diffstat (limited to '')
-rw-r--r-- | portato/session.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/portato/session.py b/portato/session.py index be622cf..636e00a 100644 --- a/portato/session.py +++ b/portato/session.py @@ -16,7 +16,7 @@ import os, os.path from .config_parser import ConfigParser from .constants import SESSION_DIR -from .helper import debug +from .helper import _,debug, info class Session (object): """ @@ -44,6 +44,7 @@ class Session (object): if not (os.path.exists(SESSION_DIR) and os.path.isdir(SESSION_DIR)): os.mkdir(SESSION_DIR) self._cfg = ConfigParser(os.path.join(SESSION_DIR, file)) + info(_("Loading session from '%s'.") % self._cfg.file) try: self._cfg.parse() except IOError, e: |