diff options
author | W. Trevor King <wking@tremily.us> | 2012-10-27 16:11:57 -0400 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-10-27 16:11:57 -0400 |
commit | 3e8de161c729f6eda00a3854f0fa9a9a1844e5c3 (patch) | |
tree | 6dcb3336ed8e053894f7110b187cfe61e5812baf | |
parent | 56b6f2a05f3f803ca9d14217ab7a81bbdcf7c1ba (diff) | |
download | bugseverywhere-3e8de161c729f6eda00a3854f0fa9a9a1844e5c3.tar.gz |
util:wsgi: import os.path for _get_cert_filenames()
This was lost in the creation of libbe.util.wsgi from
libbe.command.serve:
commit 0fa17f6bf6a809df14ae1930542059a9e62066b0
Author: W. Trevor King <wking@tremily.us>
Date: Mon Aug 27 13:37:58 2012 -0400
libbe:util:wsgi: extract WSGI utilities into a separate module.
-rw-r--r-- | libbe/util/wsgi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbe/util/wsgi.py b/libbe/util/wsgi.py index 8bbe265..bcbeb1e 100644 --- a/libbe/util/wsgi.py +++ b/libbe/util/wsgi.py @@ -27,6 +27,7 @@ See Also import copy import hashlib import logging +import os.path import re import StringIO import sys |