summaryrefslogtreecommitdiff
path: root/paste/urlparser.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-10-20 22:08:05 +0000
committerianb <devnull@localhost>2006-10-20 22:08:05 +0000
commit44fa5352360b78696c3d81cafa8e24eaa4f6c3ed (patch)
treeccde2c446f352cb5344f3c9a40090f12290bf9a7 /paste/urlparser.py
parent9eadab4b64440958f99a2fa1798227bb4a53193c (diff)
downloadpaste-44fa5352360b78696c3d81cafa8e24eaa4f6c3ed.tar.gz
A big commit, primarily aesthetic/whitespace in nature. This is the result of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up.
Diffstat (limited to 'paste/urlparser.py')
-rw-r--r--paste/urlparser.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/paste/urlparser.py b/paste/urlparser.py
index 367fa02..6aa5105 100644
--- a/paste/urlparser.py
+++ b/paste/urlparser.py
@@ -10,10 +10,10 @@ import imp
import urllib
import pkg_resources
import mimetypes
-import request
-import fileapp
+from paste import request
+from paste import fileapp
from paste.util import import_string
-import httpexceptions
+from paste import httpexceptions
from httpheaders import ETAG
from paste.util import converters
@@ -468,7 +468,7 @@ class StaticURLParser(object):
if str(mytime) == if_none_match:
headers = []
ETAG.update(headers, mytime)
- start_response('304 Not Modified',headers)
+ start_response('304 Not Modified', headers)
return [''] # empty body
fa = fileapp.FileApp(full)