Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: command_wrapper/command_wrapper_web.py

Issue 3033042: Switching from os.uname to platform.uname, since os.uname isn't available on... (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « command_wrapper/bin/command_wrapper.py ('k') | command_wrapper/viewer.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_wrapper/command_wrapper_web.py
===================================================================
--- command_wrapper/command_wrapper_web.py (revision 54172)
+++ command_wrapper/command_wrapper_web.py (working copy)
@@ -27,7 +27,7 @@
uname_release = db.StringProperty()
uname_version = db.StringProperty()
uname_machine = db.StringProperty()
- uname_machine = db.StringProperty()
+ uname_processor = db.StringProperty()
class LogHandler(webapp.RequestHandler):
@@ -50,6 +50,7 @@
ci.uname_release = str(self.request.get('uname_release'))
ci.uname_version = str(self.request.get('uname_version'))
ci.uname_machine = str(self.request.get('uname_machine'))
+ ci.uname_processor = str(self.request.get('uname_processor'))
ci.put()
« no previous file with comments | « command_wrapper/bin/command_wrapper.py ('k') | command_wrapper/viewer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698