From 6d65423a8c437c9b59719185ddd97678b1eeba04 Mon Sep 17 00:00:00 2001 From: Luke Sneeringer Date: Fri, 22 Aug 2014 12:33:00 -0400 Subject: [PATCH] Make the /etc/awx/ migration more permissive for one run. --- awx/settings/production.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/settings/production.py b/awx/settings/production.py index 814553131c..e53ba5e703 100644 --- a/awx/settings/production.py +++ b/awx/settings/production.py @@ -32,7 +32,7 @@ SECRET_KEY = None ALLOWED_HOSTS = [] # Production should only use minified JS for UI. -USE_MINIFIED_JS = True +USE_MINIFIED_JS = True # URL used by inventory script and callback plugin to access API. INTERNAL_API_URL = 'http://127.0.0.1:80' @@ -81,7 +81,7 @@ except IOError: if (not included_file or included_file == settings_file): # The import doesn't always give permission denied, so try to open the # settings file directly. - try: + try: e = None open(settings_file) except IOError, e: