Pylint fixes
This commit is contained in:
parent
dc0ee97b27
commit
4fa13d3295
@ -34,11 +34,12 @@ LOG_DISPLAY_SIZE = 1024*1024
|
|||||||
class LogDialog(ui_logdlg.Ui_LogDialog, QtWidgets.QDialog):
|
class LogDialog(ui_logdlg.Ui_LogDialog, QtWidgets.QDialog):
|
||||||
# pylint: disable=too-few-public-methods
|
# pylint: disable=too-few-public-methods
|
||||||
|
|
||||||
def __init__(self, app, log_path, parent=None):
|
def __init__(self, app, logfiles, parent=None):
|
||||||
super().__init__(parent)
|
super().__init__(parent)
|
||||||
|
|
||||||
self.app = app
|
self.app = app
|
||||||
self.logfiles = log_path
|
self.logfiles = logfiles
|
||||||
|
self.displayed_text = ""
|
||||||
|
|
||||||
self.setupUi(self)
|
self.setupUi(self)
|
||||||
|
|
||||||
@ -56,7 +57,8 @@ class LogDialog(ui_logdlg.Ui_LogDialog, QtWidgets.QDialog):
|
|||||||
if os.path.exists(log_path):
|
if os.path.exists(log_path):
|
||||||
button = QtWidgets.QPushButton(log_path)
|
button = QtWidgets.QPushButton(log_path)
|
||||||
button.clicked.connect(partial(self.set_current_log, log_path))
|
button.clicked.connect(partial(self.set_current_log, log_path))
|
||||||
self.buttonsLayout.addWidget(button, count / butts_in_row, count % butts_in_row)
|
self.buttonsLayout.addWidget(button,
|
||||||
|
count / butts_in_row, count % butts_in_row)
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
if count == 0:
|
if count == 0:
|
||||||
@ -72,8 +74,8 @@ class LogDialog(ui_logdlg.Ui_LogDialog, QtWidgets.QDialog):
|
|||||||
clipboard.copy_text_to_qubes_clipboard(self.displayed_text)
|
clipboard.copy_text_to_qubes_clipboard(self.displayed_text)
|
||||||
|
|
||||||
def set_current_log(self, log_path):
|
def set_current_log(self, log_path):
|
||||||
self.setWindowTitle(log_path)
|
|
||||||
self.displayed_text = ""
|
self.displayed_text = ""
|
||||||
|
self.setWindowTitle(log_path)
|
||||||
log = open(log_path)
|
log = open(log_path)
|
||||||
log.seek(0, os.SEEK_END)
|
log.seek(0, os.SEEK_END)
|
||||||
if log.tell() > LOG_DISPLAY_SIZE:
|
if log.tell() > LOG_DISPLAY_SIZE:
|
||||||
|
@ -21,8 +21,6 @@
|
|||||||
# with this program; if not, see <http://www.gnu.org/licenses/>.
|
# with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
import os
|
|
||||||
import os.path
|
|
||||||
import subprocess
|
import subprocess
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
Loading…
Reference in New Issue
Block a user