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

Unified Diff: devserver.py

Issue 6646052: Remove --client_prefix argument and check. (Closed) Base URL: http://git.chromium.org/git/dev-util.git@master
Patch Set: Removing flag entirely. Created 9 years, 9 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 | « autoupdate.py ('k') | devserver_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devserver.py
diff --git a/devserver.py b/devserver.py
index 53467b61d9a9ad9cb25856a2ce1ccc5af062697c..99c47bf1a1c4f3e01f44c31ecb8497b83025fbc2 100755
--- a/devserver.py
+++ b/devserver.py
@@ -118,9 +118,9 @@ if __name__ == '__main__':
help='When pre-generating update, board for latest image.')
parser.add_option('--clear_cache', action='store_true', default=False,
help='Clear out all cached udpates and exit')
- parser.add_option('--client_prefix', dest='client_prefix',
- help='Required prefix for client software version.',
- default='MementoSoftwareUpdate')
+ parser.add_option('--client_prefix', dest='client_prefix_deprecated',
sosa 2011/03/15 20:33:49 Maybe instead of in the help ... print out somethi
Greg Spencer (Chromium) 2011/03/15 21:14:37 OK, added this.
+ help='No longer used. It is still here so we don\'t break '
+ 'scripts that used it.', default='')
parser.add_option('--data_dir', dest='data_dir',
help='Writable directory where static lives',
default=os.path.dirname(os.path.abspath(sys.argv[0])))
@@ -211,7 +211,6 @@ if __name__ == '__main__':
urlbase=options.urlbase,
test_image=options.test_image,
factory_config_path=options.factory_config,
- client_prefix=options.client_prefix,
forced_image=options.image,
forced_payload=options.payload,
port=options.port,
« no previous file with comments | « autoupdate.py ('k') | devserver_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698