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

View File

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