We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2669d2 commit 4df8c6dCopy full SHA for 4df8c6d
oqtopus/core/settings.py
@@ -1,5 +1,7 @@
1
from qgis.PyQt.QtCore import QSettings
2
3
+from ..utils.plugin_utils import PluginUtils
4
+
5
try:
6
from qgis.core import (
7
QgsSettingsEntryBool,
@@ -11,7 +13,7 @@
11
13
except ImportError:
12
14
HAS_QGS_SETTINGS = False
15
-PLUGIN_NAME = "oqtopus"
16
+PLUGIN_NAME = PluginUtils.PLUGIN_ID
17
18
19
# ---------------------------------------------------------------------------
oqtopus/utils/plugin_utils.py
@@ -43,6 +43,7 @@
43
class PluginUtils:
44
45
PLUGIN_NAME = "oQtopus"
46
+ PLUGIN_ID = "oqtopus"
47
48
logsDirectory = ""
49
0 commit comments