Skip to content

Commit

Permalink
Look for local_config.py from code directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyespo committed Nov 21, 2012
1 parent b2b9954 commit e7c8ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grip/server.py
Expand Up @@ -14,7 +14,7 @@ def serve(directory='.', readme_file='README'):
# Flask application # Flask application
app = Flask('grip') app = Flask('grip')
app.config.from_pyfile('config.py') app.config.from_pyfile('config.py')
app.config.from_pyfile('../local_config.py', silent=True) app.config.from_pyfile('local_config.py', silent=True)


# Views # Views
@app.route('/') @app.route('/')
Expand Down

0 comments on commit e7c8ba5

Please sign in to comment.