You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Import user settings. Turn off creation of X.pyc to avoid stale settings if X.py is removed.
import os
import sys
sys.dont_write_bytecode = True
try:
from settings_user import *
except ImportError:
if not os.path.exists('settings_user.py'):
raise Exception('Could not import settings_user. Did you create it from the template? Start with:\n\n $ cp settings_user_template.py settings_user.py')