summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-10-10 14:02:05 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-10-10 14:02:05 -0400
commitfa0fa49ef07bf2bdfa9e68626a9de1668ea4691f (patch)
tree808e06b3c0c022f5cb4415a786324bd429c4b673
parent6efe6b73a024e3d283ad3b609f3e1c08fcb47f92 (diff)
downloaddogpile-cache-fa0fa49ef07bf2bdfa9e68626a9de1668ea4691f.tar.gz
repair hash_port program
was using a py2k print statement and failing jobs on jenkins Change-Id: Iefa4b94039e6f098384126d8c15aa27543c42a4d
-rw-r--r--hash_port.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash_port.py b/hash_port.py
index 5762bfb..c43289e 100644
--- a/hash_port.py
+++ b/hash_port.py
@@ -25,4 +25,4 @@ start, end = int(sys.argv[1]), int(sys.argv[2])
dir_ = os.getcwd()
-print(hash(dir_) % (end - start)) + start
+print((hash(dir_) % (end - start)) + start)