aboutsummaryrefslogtreecommitdiff
path: root/helpers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/__init__.py')
-rw-r--r--helpers/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/helpers/__init__.py b/helpers/__init__.py
index 40a96af..70667fd 100644
--- a/helpers/__init__.py
+++ b/helpers/__init__.py
@@ -1 +1,11 @@
1# -*- coding: utf-8 -*- 1# -*- coding: utf-8 -*-
2import sys
3import os
4
5def path():
6 if getattr(sys, 'frozen', False):
7 return sys._MEIPASS + "/"
8 else:
9 path = os.path.dirname(os.path.realpath(__file__))
10 return path + "/../"
11