commit e5bbb467823d6f90adb493844437e4494a6562a5 parent 59b2762258bfab70b7a333272b6a6646cd318906 Author: Jimbo77 <onlineregular@gmail.com> Date: Sun, 19 Aug 2012 17:12:08 -0700 changed print_error() to sys.exit to reduce coupling Diffstat:
M | setup.py | | | 4 | +--- |
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/setup.py b/setup.py @@ -9,9 +9,7 @@ import os, sys, platform from lib.util import print_error if sys.version_info[:3] < (2,6,0): - print_error("Error: Electrum requires Python version >= 2.6.0...") - sys.exit(1) - + sys.exit("Error: Electrum requires Python version >= 2.6.0...") data_files = []