From 4c2a9d256623360b34a37dbde19531919af41c21 Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Mon, 23 Nov 2015 23:14:17 +0100 Subject: replace all " with ' --- watchnews/wsgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'watchnews/wsgi.py') 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() -- cgit v1.2.1