From daa930fce0020ae9623a606931100ba2e2e437f4 Mon Sep 17 00:00:00 2001 From: Dalton Date: Wed, 19 May 2021 07:49:57 -0500 Subject: [PATCH] Updated Fallout.py As per the new version of Python these changes were required to comply with the syntax changes --- fallout.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fallout.py b/fallout.py index 584607c..193af61 100755 --- a/fallout.py +++ b/fallout.py @@ -14,8 +14,7 @@ if boot.beginBoot(hard): pwd = hack.beginLogin() if pwd != None: login.beginLogin(hard, 'ADMIN', pwd) - print select.beginSelection() + print(select.beginSelection()) else: locked.beginLocked() - print 'Login failed' - + print('Login failed')