# HG changeset patch
# User Teemu Piippo <crimsondusk64@gmail.com>
# Date 1439897934 -10800
# Node ID 5747c959c29359069840fa00102b3693e4944ac6
# Parent  5a9b5065f53f63905151bf4982ef63a587606c3b
Use python3 in the shebang

diff -r 5a9b5065f53f -r 5747c959c293 cobalt.py
--- 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.
diff -r 5a9b5065f53f -r 5747c959c293 utility.py
--- 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