Fixed an uncaught exception in configure.

This commit is contained in:
Jeremy Fincher 2003-11-22 06:54:42 +00:00
parent 877d376988
commit 27ce1d3cc7
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def configure(onStart, afterConnect, advanced):
filename = something('What\'s the filename?')
try:
fd = file(os.path.join(conf.dataDir, filename))
except OSError, e:
except EnvironmentError, e:
print 'I couldn\'t open that file: %s' % e
continue
counter = 1