Skip to content

Commit

Permalink
helper_scripts/run_sim.py tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Vacek committed Dec 6, 2015
1 parent b4581f2 commit 29d8cca
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions helper_scripts/run_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

# GPX from google maps route: http://www.gpsvisualizer.com/convert_input

### bundled packages
import gpxdata
### stdlib packages
import os
import socket
Expand All @@ -13,6 +11,15 @@
import time
import threading
import thread
### external deps
try:
import dateutil.parser
assert dateutil.parser # pyflakes
except ImportError:
print("package \"python-dateutil\" is required. exiting")
sys.exit(2)
### bundled packages
import gpxdata
###

INDEX = "/whereami/whereami.html"
Expand Down

0 comments on commit 29d8cca

Please sign in to comment.