Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
9a5b3ef0
Commit
9a5b3ef0
authored
9 years ago
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enhanced detection of the application resources directory
parent
6f9dff08
master
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
resources.py
blink/resources.py
+8
-3
No files found.
blink/resources.py
View file @
9a5b3ef0
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
__all__
=
[
'ApplicationData'
,
'Resources'
,
'IconManager'
]
__all__
=
[
'ApplicationData'
,
'Resources'
,
'IconManager'
]
import
__main__
import
imghdr
import
imghdr
import
os
import
os
import
platform
import
platform
...
@@ -60,10 +61,14 @@ class Resources(object):
...
@@ -60,10 +61,14 @@ class Resources(object):
@
classproperty
@
classproperty
def
directory
(
cls
):
def
directory
(
cls
):
if
cls
.
_cached_directory
is
None
:
if
cls
.
_cached_directory
is
None
:
if
sys
.
path
[
0
]
==
''
:
try
:
binary_directory
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__main__
.
__file__
))
except
AttributeError
:
if
hasattr
(
sys
,
'frozen'
):
application_directory
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
sys
.
executable
))
else
:
application_directory
=
os
.
path
.
realpath
(
''
)
# executed in interactive interpreter
application_directory
=
os
.
path
.
realpath
(
''
)
# executed in interactive interpreter
else
:
else
:
binary_directory
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
sys
.
argv
[
0
]))
if
os
.
path
.
basename
(
binary_directory
)
==
'bin'
:
if
os
.
path
.
basename
(
binary_directory
)
==
'bin'
:
application_directory
=
os
.
path
.
dirname
(
binary_directory
)
application_directory
=
os
.
path
.
dirname
(
binary_directory
)
else
:
else
:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment