Skip to content

Commit f925784

Browse files
committed
Fixed print() in py3 ¬¬
1 parent f792069 commit f925784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install-qt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import sys
77

88
def run(cmd):
9-
print cmd
9+
print(cmd)
1010
r = os.system(cmd)
1111
if r != 0:
1212
sys.exit('command %s failed with status %s' % (cmd, r))

0 commit comments

Comments
 (0)