aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2014-12-15 11:32:35 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2014-12-15 11:32:35 +0100
commit01889c2def073f12981ada43c11f5c742277ad20 (patch)
tree56828804ccc96b40542f0a241b693d7c163b28ed
parent4ba637edbd3edcf4469a5531768e6e1292403331 (diff)
Fix server initialization import.
Change-Id: I009e3f3edabdfd2dcd0e9b5e2b05e7f2af3a21ba
-rwxr-xr-xapp/server.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/server.py b/app/server.py
index 7023717..5b3e2cc 100755
--- a/app/server.py
+++ b/app/server.py
@@ -13,8 +13,8 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-from dashboard import app
+from dashboard.app import app
-if __name__ == '__main__':
- app.run(threaded=app.config['THREADED'], debug=app.debug)
+if __name__ == "__main__":
+ app.run(threaded=app.config["THREADED"], debug=app.debug)