Skip to content
This repository was archived by the owner on Mar 8, 2019. It is now read-only.

Commit c883f0f

Browse files
committed
Delete run method
1 parent af05070 commit c883f0f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
BASE_PATH = os.path.abspath(os.path.dirname(__file__))
55
README = open(os.path.join(BASE_PATH, 'README.rst')).read()
66

7-
__version__ = '0.0.7'
7+
__version__ = '0.0.8'
88
__author__ = 'Masashi Shibata <[email protected]>'
99
__author_email__ = '[email protected]'
1010
__license__ = 'MIT License'

wsgi_static_middleware.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ def __call__(self, env, start_response):
102102
return self.handle(env, start_response, relative_file_path)
103103
return self.app(env, start_response)
104104

105-
def run(self, *args, **kwargs):
106-
# For Bottle applications.
107-
return self(*args, **kwargs)
108-
109105
def handle(self, env, start_response, filename):
110106
abs_file_path = search_file(filename, self.static_dirs)
111107
if abs_file_path:

0 commit comments

Comments
 (0)