From 890253ba2b7dcc684c5cdb171fd2ab0ee8d2695a Mon Sep 17 00:00:00 2001 From: Matt Rose Date: Tue, 1 Dec 2020 15:49:11 -0500 Subject: [PATCH] make tests pass --- terminatorlib/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 85a3c65e..3e069e21 100644 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -606,7 +606,7 @@ class ConfigBase(Borg): dbg('ConfigBase::load: config already loaded') return - if self.command_line_options.config: + if self.command_line_options and self.command_line_options.config: filename = self.command_line_options.config else: filename = os.path.join(get_config_dir(), 'config')