From fb59f150995792aec0b4712e007b7c1464045d45 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 15 Nov 2012 14:42:45 -0500 Subject: [PATCH] check-mirroring: Use consistent ordering for keys. (imported from commit 7deaf55ccb4b47a11dbd30c9239893a42eb39e00) --- bots/check-mirroring | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bots/check-mirroring b/bots/check-mirroring index 12eeaf4..f1352a7 100755 --- a/bots/check-mirroring +++ b/bots/check-mirroring @@ -27,10 +27,10 @@ sys.path[:0] = [os.path.join(options.root_path, "python-zephyr"), mit_user = 'tabbott/extra@ATHENA.MIT.EDU' humbug_user = 'tabbott/extra@mit.edu' -zhkey1 = random.getrandbits(32) hzkey1 = random.getrandbits(32) -zhkey2 = random.getrandbits(32) hzkey2 = random.getrandbits(32) +zhkey1 = random.getrandbits(32) +zhkey2 = random.getrandbits(32) sys.path.append(".") sys.path.append(os.path.dirname(os.path.dirname(__file__))) @@ -138,7 +138,7 @@ else: failed = True if failed: - print "original keys:", zhkey1, zhkey2, hzkey1, hzkey2 + print "original keys:", hzkey1, hzkey2, zhkey1, zhkey2 sys.exit(1) print "Success!"