diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-10 16:46:07 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-10 16:46:07 +0100 |
commit | e5d7bb56758bdc465bf6e5dd0c481362f30e63e4 (patch) | |
tree | 986d0aff19e3db118ea4d66db14c58af5f91198d /portato | |
parent | 60c9d2fbf81163f1c86633094048b3bb79cc22dc (diff) | |
download | portato-e5d7bb56758bdc465bf6e5dd0c481362f30e63e4.tar.gz portato-e5d7bb56758bdc465bf6e5dd0c481362f30e63e4.tar.bz2 portato-e5d7bb56758bdc465bf6e5dd0c481362f30e63e4.zip |
Generate correct KeyNotFoundException
Diffstat (limited to '')
-rw-r--r-- | portato/config_parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/config_parser.py b/portato/config_parser.py index f4c6218..ee838b2 100644 --- a/portato/config_parser.py +++ b/portato/config_parser.py @@ -291,12 +291,12 @@ class ConfigParser: """ try: - section = self.vars[section] + sectiondict = self.vars[section] except KeyError: raise SectionNotFoundException("Section '%s' not found in file '%s'." % (section, self.file)) try: - return section[key] + return sectiondict[key] except KeyError: raise KeyNotFoundException("Key '%s' not found in section '%s' in file '%s'." % (key, section, self.file)) |