Skip to content

Commit

Permalink
Fix qt.platform.BASE_PATH location
Browse files Browse the repository at this point in the history
It was wrong since it was moved from qt/base.

fixes #378
  • Loading branch information
Virgil Dupras committed Jul 22, 2016
1 parent e69a176 commit 55ad9ef
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions qt/platform.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
# Created By: Virgil Dupras
# 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
# Copyright 2016 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
# http://www.gnu.org/licenses/gpl-3.0.html

import os.path as op
from hscommon.plat import ISWINDOWS, ISOSX, ISLINUX

if op.exists(__file__):
# 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.
BASE_PATH = op.abspath(op.join(op.dirname(__file__), '..', '..'))
# inside qt/, so we just go back one level.
BASE_PATH = op.abspath(op.join(op.dirname(__file__), '..'))
else:
# We're under a freezed environment. Our base path is ''.
BASE_PATH = ''
Expand Down

0 comments on commit 55ad9ef

Please sign in to comment.