-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Qt version used in qubesmanager to Qt5 #178
Conversation
qubesmanager/firewall.py
Outdated
self.tr("You need to fill service " | ||
"name/port for TCP/UDP rule")) | ||
return | ||
QtGui.QDialog.accept(self) | ||
QtWidgets.QDialog.accept(self) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be super().accept()
qubesmanager/log_dialog.py
Outdated
|
||
self.__init_log_text__() | ||
|
||
def __init_log_text__(self): | ||
print(self.log_path) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leftover debug.
qubesmanager/log_dialog.py
Outdated
@@ -62,16 +63,18 @@ def __init_log_text__(self): | |||
else: | |||
log.seek(0, os.SEEK_SET) | |||
self.displayed_text += log.read() | |||
print(self.displayed_text) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leftover debug.
qubesmanager/restore.py
Outdated
@@ -35,8 +34,7 @@ | |||
from . import multiselectwidget | |||
from . import backup_utils | |||
|
|||
from multiprocessing import Queue | |||
from multiprocessing.queues import Empty | |||
import queue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
queue.Queue
is different from multiprocessing.Queue
. According to documentation, the former works with threads, but not necessary with processes. Any specific reason for this change?
Fixed dependencies, places where obsolete functions stopped working, code fragments that started throwing warnings and an .ui file that stopped being readable after the update.
Fixed dependencies, places where obsolete functions stopped working,
code fragments that started throwing warnings and an .ui file that
stopped being readable after the update.