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