Skip to content

Commit

Permalink
Update setup_mws3.py
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Stephen committed Jan 31, 2017
1 parent 48e6417 commit 037215e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/setup_mws3.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def subprocess_cmd(command):
secret_key = raw_input("Enter a secret key for your application (this will be used by the application): ")
development = raw_input("Do you wish to load example data? [N]y: ")
is_dev=False
if development.lower() == "y":
if development.lower()[:1] == "y":
is_dev=True

username="%s_web" % dbname
Expand Down

0 comments on commit 037215e

Please sign in to comment.