mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-30 14:14:37 +01:00
Changed a something to an anything and looped until a valid key is given in configure.
This commit is contained in:
parent
4c980aeb3e
commit
fd57203a67
@ -53,9 +53,17 @@ def configure(onStart, afterConnect, advanced):
|
|||||||
from questions import expect, anything, something, yn
|
from questions import expect, anything, something, yn
|
||||||
print 'To use Google\'t Web Services, you must have a license key.'
|
print 'To use Google\'t Web Services, you must have a license key.'
|
||||||
if yn('Do you have a license key?') == 'y':
|
if yn('Do you have a license key?') == 'y':
|
||||||
key = anything('What is it?')
|
key = something('What is it?')
|
||||||
onStart.append('load Google')
|
while len(key) != 32:
|
||||||
onStart.append('googlelicensekey %s' % key)
|
print 'That\'s not a valid Google license key.'
|
||||||
|
if yn('Are you sure you have a valid Google license key?') == 'y':
|
||||||
|
key = something('What is it?')
|
||||||
|
else:
|
||||||
|
key = ''
|
||||||
|
break
|
||||||
|
if key:
|
||||||
|
onStart.append('load Google')
|
||||||
|
onStart.append('googlelicensekey %s' % key)
|
||||||
if yn('Google depends on the Alias module for some commands. ' \
|
if yn('Google depends on the Alias module for some commands. ' \
|
||||||
'Is the Alias module loaded?') == 'n':
|
'Is the Alias module loaded?') == 'n':
|
||||||
if yn('Would you like to load the Alias module now?') == 'y':
|
if yn('Would you like to load the Alias module now?') == 'y':
|
||||||
|
Loading…
Reference in New Issue
Block a user