summaryrefslogtreecommitdiff
path: root/dist/db.py
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2010-09-27 08:01:30 +1000
committerKeith Bostic <keith@wiredtiger.com>2010-09-27 08:01:30 +1000
commit559d8cbbae2bc11cdc71a1ac46bd4def99cf0b21 (patch)
treee53a99650848ad5cb1e28ff1387c6d4d170f8fb5 /dist/db.py
parente080b4fa9e8648eb2ce9623438373155c8eff506 (diff)
downloadmongo-559d8cbbae2bc11cdc71a1ac46bd4def99cf0b21.tar.gz
Upgrade Python scripts to Python 3.0.
--HG-- branch : keith
Diffstat (limited to 'dist/db.py')
-rw-r--r--dist/db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/db.py b/dist/db.py
index a31443382b8..93cbed4396f 100644
--- a/dist/db.py
+++ b/dist/db.py
@@ -28,4 +28,4 @@ for o, a in opts:
random.seed(seed)
for i in range(pairs):
fmt = "%010d\ndata: %0" + str(random.randrange(dmin, dmax)) + "d"
- print fmt % (i, i)
+ print(fmt % (i, i))