Fix typo libbe.storage.serve -> libbe.command.serve in libbe.storage.http comments.
authorW. Trevor King <wking@drexel.edu>
Sat, 16 Apr 2011 19:53:41 +0000 (15:53 -0400)
committerW. Trevor King <wking@drexel.edu>
Sat, 16 Apr 2011 19:53:41 +0000 (15:53 -0400)
libbe/storage/http.py

index 4cf0f8441b19347ff3c3b57e42a40ebe42e733b4..fe5bbc8c1a756b90398eda520a0d9a3e2623cb4e 100644 (file)
@@ -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