aboutsummaryrefslogtreecommitdiffstats
path: root/pathod
diff options
context:
space:
mode:
Diffstat (limited to 'pathod')
-rwxr-xr-xpathod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pathod b/pathod
index ab8cc93f..4340e2d1 100755
--- a/pathod
+++ b/pathod
@@ -1,6 +1,6 @@
#!/usr/bin/env python
import argparse
-import libomnid
+import libpathod
import tornado.ioloop
if __name__ == "__main__":
@@ -12,8 +12,8 @@ if __name__ == "__main__":
)
args = parser.parse_args()
- libomnid.application(staticdir=args.staticdir).listen(args.port)
- print "omnid listening on port %s"%args.port
+ libpathod.application(staticdir=args.staticdir).listen(args.port)
+ print "pathod listening on port %s"%args.port
try:
tornado.ioloop.IOLoop.instance().start()
except KeyboardInterrupt: