Skip to content

Commit 3d5a360

Browse files
committed
Fix Py3
1 parent c91b244 commit 3d5a360

File tree

1 file changed

+3
-2
lines changed
  • testing/resources/python_hooks_repo/foo

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
from __future__ import print_function
12
import sys
23

34

45
def func():
5-
print repr(sys.argv[1:])
6-
print 'Hello World'
6+
print(repr(sys.argv[1:]))
7+
print('Hello World')
78
return 0

0 commit comments

Comments
 (0)