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

Unified Diff: command_wrapper/viewer.html

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/command_wrapper_web.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_wrapper/viewer.html
===================================================================
--- command_wrapper/viewer.html (revision 54172)
+++ command_wrapper/viewer.html (working copy)
@@ -43,6 +43,7 @@
<th align="left">uname_release</th>
<th align="left">uname_version</th>
<th align="left">uname_machine</th>
+ <th align="left">uname_processor</th>
</tr>
{% for item in items %}
<tr>
@@ -70,6 +71,7 @@
<td>{{ item.uname_release|escape }}</td>
<td>{{ item.uname_version|escape }}</td>
<td>{{ item.uname_machine|escape }}</td>
+ <td>{{ item.uname_processor|escape }}</td>
</tr>
{% endfor %}
</table>
« no previous file with comments | « command_wrapper/command_wrapper_web.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698