ensure python2 is used

This commit is contained in:
Christopher Roy Bratusek 2012-08-21 20:17:32 +02:00
parent ecc2a8e4c7
commit 82bf0b0cb3
3 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
#-*- coding: utf-8 -*-
import sys
from PyQt4.QtGui import QApplication

2
qwad
View File

@ -1,3 +1,3 @@
#!/bin/sh
cd /usr/share/Qwad
python Qwad.pyw $@
python2 Qwad.pyw $@