Skip to content

Commit 8622534

Browse files
committed
fix issue #126
1 parent 47e0607 commit 8622534

File tree

4 files changed

+170
-227
lines changed

4 files changed

+170
-227
lines changed

src/PluginPy/launchy_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ def initSettings():
1313
#Based on http://lists.kde.org/?l=pykde&m=108947844203156&w=2
1414
try:
1515
log.info("launchy_util::initSettings, called")
16-
from PySide6 import QtCore
17-
from shiboken6 import wrapInstance
16+
from PySide2 import QtCore
17+
from shiboken2 import wrapInstance
1818
log.debug("launchy_util::initSettings, succeed to import pyside and shiboken")
1919
import launchy
2020
log.debug("launchy_util::initSettings, launchy dir: %s" % dir(launchy))

src/Plugins/CalcyPy/Calcy/CalcyGui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
import logging as log
33

4-
from PySide6 import QtCore, QtGui, QtWidgets
5-
from PySide6.QtWidgets import QApplication, QWidget
4+
from PySide2 import QtCore, QtGui, QtWidgets
5+
from PySide2.QtWidgets import QApplication, QWidget
66

77
from .ui_calcy import *
88

0 commit comments

Comments
 (0)