summaryrefslogtreecommitdiff
path: root/ql/console.py
diff options
context:
space:
mode:
Diffstat (limited to 'ql/console.py')
-rwxr-xr-xql/console.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/ql/console.py b/ql/console.py
index 0c741ca..6751b83 100755
--- a/ql/console.py
+++ b/ql/console.py
@@ -21,7 +21,13 @@ class Console(object):
def process_table(self, table):
lineup = self.get_lineup(table)
print(lineup.info)
- print()
+ print('')
+ # Python 2.x workaround
+ global input
+ try:
+ input = raw_input
+ except NameError:
+ pass # if raw_input is not defined (Python 3.x), ignore it
for team in lineup.teams:
Completer.install_new_completer(team.player_names)
for pair in team.pairs: