Skip to content

Commit

Permalink
Add missed usage()
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Jun 1, 2017
1 parent 1c1b526 commit 706e5e1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions python/sippy_lite/sippy/tools/getmonotime.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import getopt, sys
import os.path

def usage():
sys.stderr.write('Usage: %s [-r] [-S sippy_path] [-C clock_name]\n' % \
(os.path.basename(sys.argv[0])))
sys.exit(1)

if __name__ == '__main__':
sippy_path = None
Expand Down

0 comments on commit 706e5e1

Please sign in to comment.