mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 19:52:54 +01:00
Fixed an uncaught exception in configure.
This commit is contained in:
parent
877d376988
commit
27ce1d3cc7
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user