generate_localserver_secrets: Fix path to camo defaults file.

(imported from commit 4456715e038b10978b3ce1e7454d625795f336e7)
This commit is contained in:
Tim Abbott 2013-11-10 10:04:24 -05:00
parent 5de6b879b7
commit 26d7411bc0
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from zerver.lib.utils import generate_random_token
SETTINGS_FILENAME = "zproject/local_settings_template.py"
OUTPUT_SETTINGS_FILENAME = "zproject/local_settings_generated.py"
CAMO_CONFIG_FILENAME = '/etc/defaults/camo'
CAMO_CONFIG_FILENAME = '/etc/default/camo'
if not os.path.exists(SETTINGS_FILENAME):
print "Unable to find settings file at %s" % (SETTINGS_FILENAME,)