Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ria Jha committed Jun 14, 2018
1 parent ef0d7d5 commit a238d78
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion example_project/example_project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,3 @@ def get_game_port(game):

from django_autoconfig import autoconfig
autoconfig.configure_settings(globals())
print "SETUP ex proj GLOBAL CONFIGURATIONS"
1 change: 0 additions & 1 deletion integration_tests/tests/connection_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def is_server_healthy(url):

attempts += 1
time.sleep(1)
print "Is server healthy failed"
return False


Expand Down
1 change: 1 addition & 0 deletions players/autoconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
'AUTOCONFIG_INDEX_VIEW': 'aimmo/home',
'STATIC_URL': '/static/',
}

SETTINGS = {
'INSTALLED_APPS': [
'django.contrib.auth',
Expand Down
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

if __name__ == '__main__':
try:
runner.run_something('--kube' in sys.argv or '-k' in sys.argv)
runner.run('--kube' in sys.argv or '-k' in sys.argv)
except Exception as err:
traceback.print_exc()
raise
Expand Down

0 comments on commit a238d78

Please sign in to comment.