1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-03-10 05:34:36 +00:00

Fix qt.platform.BASE_PATH location

It was wrong since it was moved from qt/base.

fixes #378
This commit is contained in:
Virgil Dupras 2016-07-21 20:39:15 -04:00
parent e69a1764a0
commit 55ad9ef33a

View File

@ -1,9 +1,7 @@
# Created By: Virgil Dupras # Copyright 2016 Hardcoded Software (http://www.hardcoded.net)
# Created On: 2009-09-27 #
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net) # This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
# # which should be included with this package. The terms are also available at
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html # http://www.gnu.org/licenses/gpl-3.0.html
import os.path as op import os.path as op
@ -11,8 +9,8 @@ from hscommon.plat import ISWINDOWS, ISOSX, ISLINUX
if op.exists(__file__): if op.exists(__file__):
# We want to get the absolute path or our root folder. We know that in that folder we're # We want to get the absolute path or our root folder. We know that in that folder we're
# inside qt/base, so we just fo back two levels. # inside qt/, so we just go back one level.
BASE_PATH = op.abspath(op.join(op.dirname(__file__), '..', '..')) BASE_PATH = op.abspath(op.join(op.dirname(__file__), '..'))
else: else:
# We're under a freezed environment. Our base path is ''. # We're under a freezed environment. Our base path is ''.
BASE_PATH = '' BASE_PATH = ''