aboutsummaryrefslogtreecommitdiffstats
path: root/libbe
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2011-04-16 15:53:41 -0400
committerW. Trevor King <wking@drexel.edu>2011-04-16 15:53:41 -0400
commit7cb2e5dceb0f459b16f16044e4ae2f5de3c2675e (patch)
tree5b08c0858497492b898235ab6daf2b810e76d754 /libbe
parentbe879018ab893f1b6bf3450e6d92efc9088125c2 (diff)
downloadbugseverywhere-7cb2e5dceb0f459b16f16044e4ae2f5de3c2675e.tar.gz
Fix typo libbe.storage.serve -> libbe.command.serve in libbe.storage.http comments.
Diffstat (limited to 'libbe')
-rw-r--r--libbe/storage/http.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/storage/http.py b/libbe/storage/http.py
index 4cf0f84..fe5bbc8 100644
--- a/libbe/storage/http.py
+++ b/libbe/storage/http.py
@@ -355,7 +355,7 @@ if TESTING == True:
storage=self._storage_backend)
HTTP.__init__(self, repo='http://localhost:8000/', *args, **kwargs)
self.intitialized = False
- # duplicated from libbe.storage.serve.WSGITestCase
+ # duplicated from libbe.command.serve.WSGITestCase
self.default_environ = {
'REQUEST_METHOD': 'GET', # 'POST', 'HEAD'
'SCRIPT_NAME':'',
@@ -376,7 +376,7 @@ if TESTING == True:
}
def getURL(self, app, path='/', method='GET', data=None,
scheme='http', environ={}):
- # duplicated from libbe.storage.serve.WSGITestCase
+ # duplicated from libbe.command.serve.WSGITestCase
env = copy.copy(self.default_environ)
env['PATH_INFO'] = path
env['REQUEST_METHOD'] = method