Skip to content

Commit

Permalink
New options added
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryptix720 authored Apr 29, 2019
1 parent b6ff116 commit 30bfbd2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/utils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def sys_argv_errors():
print((print_critical_msg(err_msg)))
raise SystemExit()
# Check for illegal (non-console) comma characters.
if len(sys.argv[i]) > 1 and "\uff0c" in sys.argv[i].split('=', 1)[-1]:
if len(sys.argv[i]) > 1 and "\\uff0c" in sys.argv[i].split('=', 1)[-1]:
err_msg = "Illegal (non-console) comma character ('" + sys.argv[i] + "')."
print((print_critical_msg(err_msg)))
raise SystemExit()
Expand Down Expand Up @@ -360,6 +360,17 @@ def sys_argv_errors():
# Write file
FILE_WRITE = "echo "

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '6j#h#1hd5u3%zu4-a5pzc9^)a$88pn6**_q%nxc))9+89j-rtr'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []

#Project root


# Write file
FILE_UPLOAD = "wget "

Expand Down

0 comments on commit 30bfbd2

Please sign in to comment.