Updated Fallout.py
As per the new version of Python these changes were required to comply with the syntax changes
This commit is contained in:
parent
1c1215325f
commit
daa930fce0
1 changed files with 2 additions and 3 deletions
|
@ -14,8 +14,7 @@ if boot.beginBoot(hard):
|
||||||
pwd = hack.beginLogin()
|
pwd = hack.beginLogin()
|
||||||
if pwd != None:
|
if pwd != None:
|
||||||
login.beginLogin(hard, 'ADMIN', pwd)
|
login.beginLogin(hard, 'ADMIN', pwd)
|
||||||
print select.beginSelection()
|
print(select.beginSelection())
|
||||||
else:
|
else:
|
||||||
locked.beginLocked()
|
locked.beginLocked()
|
||||||
print 'Login failed'
|
print('Login failed')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue