diff options
author | Paweł Jastrzębski <pawelj@vulturis.eu> | 2014-04-10 13:42:29 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@vulturis.eu> | 2014-04-10 13:42:29 +0200 |
commit | 3fdff845b77a279ab0fcff9e6a203effa3ab2ed3 (patch) | |
tree | 47dcf7a14572a68e10e59575a2d8ca78d2a0e145 /kcc-c2p.py | |
parent | Fixed No optimization mode (close #88) (diff) | |
download | kcc-3fdff845b77a279ab0fcff9e6a203effa3ab2ed3.tar.gz kcc-3fdff845b77a279ab0fcff9e6a203effa3ab2ed3.tar.bz2 kcc-3fdff845b77a279ab0fcff9e6a203effa3ab2ed3.zip |
Tiny code cleanup
Diffstat (limited to 'kcc-c2p.py')
-rwxr-xr-x | kcc-c2p.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kcc-c2p.py b/kcc-c2p.py index 9a6d16d..482db23 100755 --- a/kcc-c2p.py +++ b/kcc-c2p.py @@ -18,16 +18,16 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -import sys -if sys.version_info[0] != 3: - print('ERROR: This is Python 3 script!') - exit(1) - __version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>' __docformat__ = 'restructuredtext en' +import sys +if sys.version_info[0] != 3: + print('ERROR: This is Python 3 script!') + exit(1) + # Dependiences check missing = [] try: |