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

Side by Side Diff: client/virt/virt_step_editor.py

Issue 6883246: Merge autotest upstream from @5318 ~ @5336 (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/virt/virt_scheduler.py ('k') | client/virt/virt_test_setup.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 """ 2 """
3 Step file creator/editor. 3 Step file creator/editor.
4 4
5 @copyright: Red Hat Inc 2009 5 @copyright: Red Hat Inc 2009
6 @author: mgoldish@redhat.com (Michael Goldish) 6 @author: mgoldish@redhat.com (Michael Goldish)
7 @version: "20090401" 7 @version: "20090401"
8 """ 8 """
9 9
10 import pygtk, gtk, os, glob, shutil, sys, logging 10 import pygtk, gtk, os, glob, shutil, sys, logging
(...skipping 1381 matching lines...) Expand 10 before | Expand all | Expand 10 after
1392 file.write("# " + "-" * 32 + "\n") 1392 file.write("# " + "-" * 32 + "\n")
1393 file.write(step) 1393 file.write(step)
1394 file.close() 1394 file.close()
1395 1395
1396 1396
1397 if __name__ == "__main__": 1397 if __name__ == "__main__":
1398 se = StepEditor() 1398 se = StepEditor()
1399 if len(sys.argv) > 1: 1399 if len(sys.argv) > 1:
1400 se.set_steps_file(sys.argv[1]) 1400 se.set_steps_file(sys.argv[1])
1401 gtk.main() 1401 gtk.main()
OLDNEW
« no previous file with comments | « client/virt/virt_scheduler.py ('k') | client/virt/virt_test_setup.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698