Skip to content

Commit fa0fa49

Browse files
committed
repair hash_port program
was using a py2k print statement and failing jobs on jenkins Change-Id: Iefa4b94039e6f098384126d8c15aa27543c42a4d
1 parent 6efe6b7 commit fa0fa49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hash_port.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
dir_ = os.getcwd()
2727

28-
print(hash(dir_) % (end - start)) + start
28+
print((hash(dir_) % (end - start)) + start)

0 commit comments

Comments
 (0)