Skip to content

Commit

Permalink
repair hash_port program
Browse files Browse the repository at this point in the history
was using a py2k print statement and failing
jobs on jenkins

Change-Id: Iefa4b94039e6f098384126d8c15aa27543c42a4d
  • Loading branch information
zzzeek committed Oct 10, 2021
1 parent 6efe6b7 commit fa0fa49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hash_port.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@

dir_ = os.getcwd()

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

0 comments on commit fa0fa49

Please sign in to comment.