mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-30 06:49:24 +01:00
Fixed an uncaught exception in Lookup.configure.
This commit is contained in:
parent
38aad75a89
commit
6928a3a54f
@ -60,7 +60,11 @@ def configure(onStart, afterConnect, advanced):
|
|||||||
print 'The file itself should be composed of lines of the form key:value.'
|
print 'The file itself should be composed of lines of the form key:value.'
|
||||||
while yn('Would you like to add a file?') == 'y':
|
while yn('Would you like to add a file?') == 'y':
|
||||||
filename = something('What\'s the filename?')
|
filename = something('What\'s the filename?')
|
||||||
fd = file(os.path.join(conf.dataDir, filename))
|
try:
|
||||||
|
fd = file(os.path.join(conf.dataDir, filename))
|
||||||
|
except OSError, e:
|
||||||
|
print 'I couldn\'t open that file: %s' % e
|
||||||
|
continue
|
||||||
counter = 1
|
counter = 1
|
||||||
try:
|
try:
|
||||||
for line in fd:
|
for line in fd:
|
||||||
|
Loading…
Reference in New Issue
Block a user