0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00

Fix an error message in smoke.py

This commit is contained in:
Richard Kreuter 2010-07-08 14:20:58 -04:00
parent 5f9b5ff8d4
commit 3e2f49e004

View File

@ -288,14 +288,14 @@ def report():
def missing(lst, src, dst):
if lst:
print """The following databases were present in the %s but not the %s
print """The following collections were present in the %s but not the %s
at the end of testing:""" % (src, dst)
for db in lst:
print db
missing(lost_in_slave, "master", "slave")
missing(lost_in_master, "slave", "master")
if screwy_in_slave:
print """The following databases has different hashes in master and slave
print """The following collections has different hashes in master and slave
at the end of testing:"""
for db in screwy_in_slave.keys():
print "%s\t %s" % (db, screwy_in_slave[db])