Skip to content

Instantly share code, notes, and snippets.

@ThisIsMissEm
Created January 30, 2010 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThisIsMissEm/290544 to your computer and use it in GitHub Desktop.
Save ThisIsMissEm/290544 to your computer and use it in GitHub Desktop.
From 68fe1e100488d89ab566e271bfe768cb781aa789 Mon Sep 17 00:00:00 2001
From: Micheil Smith <micheil@brandedcode.com>
Date: Sun, 31 Jan 2010 00:03:49 +1100
Subject: [PATCH] Adding in the platform.machine details to tools/test.py
---
tools/test.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/test.py b/tools/test.py
index 607a62e..4abc970 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -101,7 +101,7 @@ class ProgressIndicator(object):
# ...and then reraise the exception to bail out
raise
self.Done()
- print "\r\nPlatform: {0} {1}".format(platform.system(), platform.release())
+ print "\r\nPlatform: {0} {1} {2}".format(platform.system(), platform.release(), platform.machine())
return not self.failed
def RunSingle(self):
--
1.6.5.7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment