]> arthur.barton.de Git - bup.git/blobdiff - lib/cmd/tick-cmd.py
Update base_version to 0.34~ for 0.34 development
[bup.git] / lib / cmd / tick-cmd.py
diff --git a/lib/cmd/tick-cmd.py b/lib/cmd/tick-cmd.py
deleted file mode 100755 (executable)
index 30e1d50..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-"""": # -*-python-*-
-bup_python="$(dirname "$0")/bup-python" || exit $?
-exec "$bup_python" "$0" ${1+"$@"}
-"""
-# end of bup preamble
-
-from __future__ import absolute_import
-import sys, time
-from bup import options
-
-optspec = """
-bup tick
-"""
-o = options.Options(optspec)
-(opt, flags, extra) = o.parse(sys.argv[1:])
-
-if extra:
-    o.fatal("no arguments expected")
-
-t = time.time()
-tleft = 1 - (t - int(t))
-time.sleep(tleft)