diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2015-11-23 23:14:17 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2015-11-23 23:14:17 +0100 |
commit | 4c2a9d256623360b34a37dbde19531919af41c21 (patch) | |
tree | fa8f87435d8108d071963283aea0b6bb0f0da62a /watchnews/wsgi.py | |
parent | 6b37966de51c01e6a55dd0188d9d2ac953559c14 (diff) | |
download | watchnews-4c2a9d256623360b34a37dbde19531919af41c21.tar.gz watchnews-4c2a9d256623360b34a37dbde19531919af41c21.zip |
replace all " with '
Diffstat (limited to 'watchnews/wsgi.py')
-rw-r--r-- | watchnews/wsgi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/watchnews/wsgi.py b/watchnews/wsgi.py index bd157cb..1a5240b 100644 --- a/watchnews/wsgi.py +++ b/watchnews/wsgi.py @@ -2,9 +2,9 @@ from watchnews import web, data import os -dbpath = os.environ.get("WATCHNEWS_DBPATH") +dbpath = os.environ.get('WATCHNEWS_DBPATH') if not dbpath: - raise Exception("WATCHNEWS_DBPATH must be set") + raise Exception('WATCHNEWS_DBPATH must be set') data.init_sqlite(dbpath) application = web.get_app() |