# HG changeset patch # User Jeff Hammel # Date 1471989480 25200 # Node ID d1880117acb599cfebc9d0ec0484df6eada50624 # Parent a4680e54c481ecf7fb7a9e9d54c5054f42881306 attempt to correct documentation display on pypi diff -r a4680e54c481 -r d1880117acb5 README.txt --- a/README.txt Tue Aug 23 13:57:20 2016 -0700 +++ b/README.txt Tue Aug 23 14:58:00 2016 -0700 @@ -7,8 +7,9 @@ I=0; while ./do_some_things.py --param $arg; do I=$((I+1)); echo Iteration ${I}; sleep 1; done + fun things to try ----------------- +----------------- Russian roulette (with two chambers):: @@ -18,5 +19,4 @@ Jeff Hammel - - +http://k0s.org/ diff -r a4680e54c481 -r d1880117acb5 fail.py --- a/fail.py Tue Aug 23 13:57:20 2016 -0700 +++ b/fail.py Tue Aug 23 14:58:00 2016 -0700 @@ -29,13 +29,15 @@ ctr = 0 while True: - print ("Iteration {}".format(ctr)) ctr += 1 # run it process = subprocess.Popen(options.command, shell=True) _, _ = process.communicate() + + print ("Iteration {}".format(ctr)) + # test it if process.returncode not in options.codes: sys.exit(process.returncode) diff -r a4680e54c481 -r d1880117acb5 setup.py --- a/setup.py Tue Aug 23 13:57:20 2016 -0700 +++ b/setup.py Tue Aug 23 14:58:00 2016 -0700 @@ -7,7 +7,7 @@ except IOError: description = None -version = '0.1' +version = '0.1.1' deps = []