Put finally: in their own block for Python 2.4

This commit is contained in:
Thomas Hurst 2008-09-03 19:34:20 +01:00
parent 8fd22efed2
commit 84658d4ea4
2 changed files with 10 additions and 8 deletions

View File

@ -73,6 +73,7 @@ class Uninstall(Command):
def run(self):
self.ensure_filename('manifest')
try:
try:
f = open(self.manifest)
files = [file.strip() for file in f]

View File

@ -167,6 +167,7 @@ class ConfigFile:
def _line_ok(self):
if self._currvalue is None: return
else:
try: # *glares at 2.4 users*
try:
self.callback(self._currsection, self._currsetting, self._currvalue)
except ValueError, e: