Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mpentler committed Jan 27, 2018
1 parent d55067f commit d254467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teletext-twitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def write_timeline(): # grab the latest timeline - only 5 tweets for now
def parse_args():
parser = argparse.ArgumentParser(description="Reads your Twitter timeline and turns it into teletext pages for your Raspberry Pi.")
parser.add_argument("-d", "--delay", type=int, default=60, help="seconds between timeline scrapes (minimum is 60 seconds - lower values have no effect)")
parser.add_argument("-v", "--version", action="version", version="0.1")
parser.add_argument("-v", "--version", action="version", version="0.2")
parser.add_argument("-q", "--quiet", dest="quiet", action="store_true", default=False, help="suppresses all output to the terminal except warnings and errors")
args = parser.parse_args()
args.delay = max(60, args.delay)
Expand Down

0 comments on commit d254467

Please sign in to comment.