Chromium Code Reviews| 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, |