run.py: adapt to shared asset refactoring

This is a fixup to the shared asset refactoring. The debug server currently
does not start, this commit fixes that.
1 files changed, 1 insertions(+), 5 deletions(-)

M run.py
M run.py +1 -5
@@ 44,14 44,10 @@ class HttpHgRepos:
         return self._app(environ, start_response)
 
 if __name__ == '__main__':
-    from srht.debug import configure_static_folder, configure_static_serving
-    from srht.debug import configure_static_arguments, build_parser, run_app
+    from srht.debug import build_parser, run_app
     from hgsrht.app import app
-    configure_static_folder(app)
     parser = build_parser(app)
-    configure_static_arguments(parser)
     configure_hg_arguments(parser)
     args = parser.parse_args()
-    configure_static_serving(app, args)
     configure_hg_app(app, args)
     run_app(app)