mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-30 22:24:20 +01:00
Fix for bug #820810: Don't ask to load Alias if Alias is already loaded.
This commit is contained in:
parent
5d24cbd20d
commit
2afb4ef965
@ -65,8 +65,8 @@ def configure(onStart, afterConnect, advanced):
|
|||||||
if key:
|
if key:
|
||||||
onStart.append('load Google')
|
onStart.append('load Google')
|
||||||
onStart.append('googlelicensekey %s' % key)
|
onStart.append('googlelicensekey %s' % key)
|
||||||
if yn('Google depends on the Alias module for some commands. ' \
|
if 'load Alias' not in onStart:
|
||||||
'Is the Alias module loaded?') == 'n':
|
print 'Google depends on the Alias module for some commands.'
|
||||||
if yn('Would you like to load the Alias module now?') == 'y':
|
if yn('Would you like to load the Alias module now?') == 'y':
|
||||||
onStart.append('load Alias')
|
onStart.append('load Alias')
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user