From d1d053c74dc6720049b16b9e8366d2fcb41c27af Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Thu, 6 Jul 2017 00:13:40 +0100 Subject: [PATCH] Remove unnecessary "widget=None" arguments. --- bin/pyqso | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/pyqso b/bin/pyqso index 6d840f3..b11998b 100755 --- a/bin/pyqso +++ b/bin/pyqso @@ -112,7 +112,7 @@ class PyQSO: if(logbook_path): logging.info("Opening logbook: %s" % logbook_path) - self.logbook.open(widget=None, path=logbook_path) + self.logbook.open(path=logbook_path) else: # If no logbook path is specified at the command line, # then check if the user wants to open a default logbook. @@ -124,7 +124,7 @@ class PyQSO: logbook_path = config.get(section, option) if(logbook_path is not None and logbook_path != ""): logging.info("Opening the default logbook: %s" % logbook_path) - self.logbook.open(widget=None, path=logbook_path) + self.logbook.open(path=logbook_path) return