Skip to content

Commit 9d37d5b

Browse files
committed
updated for pyTSon 1.1
1 parent 35cc792 commit 9d37d5b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from ts3plugin import ts3plugin, PluginHost
2-
from ts3 import getPluginPath
2+
from ts3lib import getPluginPath
33
from os import path
4-
import ts3, ts3defines, os.path, pickle, re
4+
import ts3defines, os.path, pickle, re
5+
import ts3lib as ts3
56

67
from PythonQt.QtSql import QSqlDatabase
78
from PythonQt.QtGui import *
@@ -111,7 +112,7 @@ class SettingsDialog(QDialog):
111112
def __init__(self, blacklist, parent=None):
112113
self.bl = blacklist
113114
super(QDialog, self).__init__(parent)
114-
setupUi(self, os.path.join(ts3.getPluginPath(), "pyTSon", "ressources", "blacklist", "blacklist.ui"))
115+
setupUi(self, os.path.join(ts3.getPluginPath(), "pyTSon", "scripts", "blacklist", "blacklist.ui"))
115116
self.setWindowTitle("Blacklist by Luemmel")
116117

117118
self.btn_add.clicked.connect(self.add)

0 commit comments

Comments
 (0)