diff options
author | emkael <emkael@tlen.pl> | 2016-10-10 16:15:33 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-11-25 22:10:20 +0100 |
commit | 918046228044145d77e96d8b739430c65da6f23f (patch) | |
tree | 2f9c7504eb5732fc2fce3a8442600d76139fd8f4 | |
parent | 07401a984b58d6d1328264efca45df39e1951ea2 (diff) |
fun fact: `print()` in Python2 prints out "()"
-rwxr-xr-x | ql/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ql/console.py b/ql/console.py index dede956..6751b83 100755 --- a/ql/console.py +++ b/ql/console.py @@ -21,7 +21,7 @@ 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:
|