Skip to content

Commit c1bac59

Browse files
committed
Fix error under Python 3.4 on Travis
See https://travis-ci.org/jhermann/gh-commander/jobs/57697416 "print" is not a statement ;)
1 parent 22fca19 commit c1bac59

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
with tempfile.TemporaryFile(dir=target) as t:
1717
pass
1818
except OSError as e:
19-
print(
19+
print((
2020
'''******************************************************************************
2121
Pythonpy can't create a file in:
2222
/etc/bash_completion.d
@@ -32,7 +32,7 @@
3232
root access or special privileges. If you don't like using root,
3333
learn virtualenv and refer to 1).
3434
Installation proceeding without root access...
35-
******************************************************************************''') % e
35+
******************************************************************************''') % (e,))
3636
target='bash_completion.d'
3737

3838
data_files = [(target, ['pythonpy/pycompletion.sh']),]

0 commit comments

Comments
 (0)