Put finally: in their own block for Python 2.4
This commit is contained in:
parent
8fd22efed2
commit
84658d4ea4
1
setup.py
1
setup.py
|
@ -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]
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue