aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/test/shell/unittest.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/shell/unittest.bash b/src/test/shell/unittest.bash
index e3d524a913..d7c02a3358 100644
--- a/src/test/shell/unittest.bash
+++ b/src/test/shell/unittest.bash
@@ -717,7 +717,7 @@ if [ "$UNAME" = "linux" ] || [[ "$UNAME" =~ msys_nt* ]]; then
else
function timestamp() {
# OS X and FreeBSD do not have %N so python is the best we can do
- python -c 'import time; print int(round(time.time() * 1000))'
+ python -c 'import time; print(int(round(time.time() * 1000)))'
}
fi