From 06ef87a5a0740198636d6ac358a605eb4e84be30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Tue, 31 Jul 2012 17:47:29 +0400 Subject: [PATCH] Run script under python2 --- scripts/cl-console | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cl-console b/scripts/cl-console index 9431995..33650cb 100755 --- a/scripts/cl-console +++ b/scripts/cl-console @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python2 #-*- coding: utf-8 -*- # Copyright 2012 Calculate Ltd. http://www.calculate-linux.org @@ -34,4 +34,4 @@ if __name__=='__main__': wait_thread.stop() red = '\033[31m * \033[0m' print '\n'+red+_('Interrupted by the user') - sys.exit(1) \ No newline at end of file + sys.exit(1)