Commit 3f7eeaf1 authored by eldir's avatar eldir Committed by Guillaume Seguin

Fixed bug in path

Since pronterserve.py has been moved the path needs to be corrected.
parent 61be7b17
...@@ -113,8 +113,8 @@ class Prontserve(pronsole.pronsole, EventEmitter): ...@@ -113,8 +113,8 @@ class Prontserve(pronsole.pronsole, EventEmitter):
# axes= ["x", "y", "z"] # axes= ["x", "y", "z"]
), ),
server_settings= dict( server_settings= dict(
template_path= os.path.join(dir, "printrun", "server", "templates"), template_path= os.path.join(dir, "server", "templates"),
static_path= os.path.join(dir, "printrun", "server", "static"), static_path= os.path.join(dir, "server", "static"),
debug= True debug= True
), ),
routes= [ routes= [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment