Tue, 18 Aug 2015 14:38:54 +0300
Use python3 in the shebang
cobalt.py | file | annotate | diff | comparison | revisions | |
utility.py | file | annotate | diff | comparison | revisions |
--- a/cobalt.py Mon Aug 17 02:05:16 2015 +0300 +++ b/cobalt.py Tue Aug 18 14:38:54 2015 +0300 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 ''' Copyright 2014-2015 Teemu Piippo All rights reserved.
--- a/utility.py Mon Aug 17 02:05:16 2015 +0300 +++ b/utility.py Tue Aug 18 14:38:54 2015 +0300 @@ -65,4 +65,4 @@ return BoldChar + '[' + BoldChar \ + ColorChar + '2,2' + ('=' * int (round (p * barLength))) \ + ColorChar + '1,1' + ('-' * int (barLength - round (p * barLength))) \ - + ColorChar + BoldChar + ']' + BoldChar \ No newline at end of file + + ColorChar + BoldChar + ']' + BoldChar