1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

With PyQt 4.7.5's new from_imports option, sys.path hackage is not required anymore.

This commit is contained in:
Virgil Dupras
2010-08-20 09:48:16 +02:00
parent ac4881f231
commit 5733c0143b
5 changed files with 2 additions and 15 deletions

View File

@@ -34,7 +34,6 @@ 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
@@ -74,7 +73,6 @@ def package_windows(edition, dev):
def package_debian(edition):
add_to_pythonpath('qt')
add_to_pythonpath(op.join('qt', 'base'))
add_to_pythonpath(op.join('qt', edition))
from app import DupeGuru