From 8a117c17ec903ce01ea147d4bef7fcc6ff161baa Mon Sep 17 00:00:00 2001 From: Victor Häggqvist Date: Tue, 20 Jan 2015 00:15:31 +0100 Subject: Make it run under Python 3 --- AndroidResR/AndroidResR.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'AndroidResR/AndroidResR.py') diff --git a/AndroidResR/AndroidResR.py b/AndroidResR/AndroidResR.py index 41e6c4f..0de0391 100755 --- a/AndroidResR/AndroidResR.py +++ b/AndroidResR/AndroidResR.py @@ -11,7 +11,7 @@ from util.ConfigLoader import ConfigLoader __author__ = 'Victor Häggqvist' -__version__ = '1.1.0' +__version__ = '1.1.1' DRAWABLEDIRS = ["drawable-mdpi", "drawable-hdpi", "drawable-xhdpi", "drawable-xxhdpi", "drawable-xxxhdpi"] DRAWABLESHORT = ["mdpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"] @@ -20,7 +20,7 @@ DEBUG = True def log(msg): if DEBUG: - print msg + print(msg) class Window(QtGui.QMainWindow, Ui_MainWindow): -- cgit v1.2.3