From 82bf0b0cb3a2449b2c7b3bc272bf79749982c201 Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Tue, 21 Aug 2012 20:17:32 +0200 Subject: [PATCH] ensure python2 is used --- ChangeLog | 1 + Qwad.pyw | 2 +- qwad | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b3464b5..e4c75f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ * downloading channels is currently not possible * logical sorting of IOS in downloader (IOS4 is the first, not after IOS39) taken from: [http://code.activestate.com/recipes/135435/] +* ensure Python 2.x is used, Python 3.x is not yet supported -- 0.3 -- * Updated some porject's files which still referenced wii signer diff --git a/Qwad.pyw b/Qwad.pyw index f297305..e9e9087 100644 --- a/Qwad.pyw +++ b/Qwad.pyw @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 #-*- coding: utf-8 -*- import sys from PyQt4.QtGui import QApplication diff --git a/qwad b/qwad index 4406ee2..9111071 100755 --- a/qwad +++ b/qwad @@ -1,3 +1,3 @@ #!/bin/sh cd /usr/share/Qwad -python Qwad.pyw $@ +python2 Qwad.pyw $@