Pass the command line arguments to LogDialog

instead of only the first one.  That caused argv[1] to be iterated over,
meaning that LogDialog would see it as a list of one-character
filenames.  Hilarity ensued.
This commit is contained in:
Demi Marie Obenour 2021-04-02 23:39:45 -04:00
parent 5f1770fecd
commit 883ae3b082
No known key found for this signature in database
GPG Key ID: 28A45C93B0B5B6E0

View File

@ -84,7 +84,7 @@ def main():
qubes_app = Qubes()
qt_app = QtWidgets.QApplication(sys.argv)
log_window = LogDialog(qubes_app, sys.argv[1])
log_window = LogDialog(qubes_app, sys.argv[1:])
log_window.show()
qt_app.exec_()