summaryrefslogtreecommitdiff
path: root/watchnews/wsgi.py
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2015-11-23 23:14:17 +0100
committerYves Fischer <yvesf-git@xapek.org>2015-11-23 23:14:17 +0100
commit4c2a9d256623360b34a37dbde19531919af41c21 (patch)
treefa8f87435d8108d071963283aea0b6bb0f0da62a /watchnews/wsgi.py
parent6b37966de51c01e6a55dd0188d9d2ac953559c14 (diff)
downloadwatchnews-4c2a9d256623360b34a37dbde19531919af41c21.tar.gz
watchnews-4c2a9d256623360b34a37dbde19531919af41c21.zip
replace all " with '
Diffstat (limited to 'watchnews/wsgi.py')
-rw-r--r--watchnews/wsgi.py4
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()