Skip to content

Commit

Permalink
argh, need this
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffckerr committed Jun 4, 2018
1 parent 1019503 commit 71636e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/start_server.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python

# Run the server
from hptool.webapp import main
main.run()
import hptool.webapp.main
# from hptool.webapp.main import run
# run()
2 changes: 2 additions & 0 deletions hptool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ def __init__(self, errormsg, *args, **kwargs):
from .healthpackage import HealthPackage
from .project import Project

# Import webapp
import webapp



2 changes: 2 additions & 0 deletions hptool/webapp/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import config
from . import main

0 comments on commit 71636e9

Please sign in to comment.