Fix the Paver run_all_servers method.

This command was broken by 85814f0b because multi-character short
options were introduced with `--asset_settings_lms` and
`--asset_settings_cms`.
This commit is contained in:
Brandon DeRosier
2015-07-07 23:08:29 -04:00
parent 8cde240dd8
commit 58c7f43f61

View File

@@ -166,9 +166,9 @@ def celery(options):
("fast", "f", "Skip updating assets"),
("optimized", "o", "Run with optimized assets"),
("settings_lms=", "l", "Set LMS only, overriding the value from --settings (if provided)"),
("asset_settings_lms=", "al", "Set LMS only, overriding the value from --asset_settings (if provided)"),
("asset_settings_lms=", None, "Set LMS only, overriding the value from --asset_settings (if provided)"),
("settings_cms=", "c", "Set Studio only, overriding the value from --settings (if provided)"),
("asset_settings_cms=", "ac", "Set Studio only, overriding the value from --asset_settings (if provided)"),
("asset_settings_cms=", None, "Set Studio only, overriding the value from --asset_settings (if provided)"),
])
def run_all_servers(options):
"""