From cc05661f9e7b3b640d480c27b8b459da67ce5cc3 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Tue, 17 Aug 2010 09:27:38 +0100 Subject: [PATCH] Qt: Fixed packaging which didn't work under py3k. --- package.py | 1 + 1 file changed, 1 insertion(+) diff --git a/package.py b/package.py index 6c4fde40..aa68c4a1 100644 --- a/package.py +++ b/package.py @@ -34,6 +34,7 @@ def package_windows(edition, dev): return add_to_pythonpath('.') add_to_pythonpath('qt') + add_to_pythonpath(op.join('qt', 'base')) add_to_pythonpath(op.join('qt', edition)) os.chdir(op.join('qt', edition)) from app import DupeGuru