From ce179abd2c6c532d6d742961fe4ba0970df61106 Mon Sep 17 00:00:00 2001 From: Simon Fondrie-Teitler Date: Mon, 1 May 2017 16:35:13 -0400 Subject: [bug] Properly format string formatting --- src/leap/bitmask/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/leap/bitmask/config.py') diff --git a/src/leap/bitmask/config.py b/src/leap/bitmask/config.py index a09a2bc5..833980d9 100644 --- a/src/leap/bitmask/config.py +++ b/src/leap/bitmask/config.py @@ -56,7 +56,7 @@ class Configuration(object): except (ConfigParser.NoOptionError, ConfigParser.NoSectionError): if default is None: raise MissingConfigEntry("%s is missing the [%s]%s entry" - % self.config_path, section, option) + % (self.config_path, section, option)) return default def set(self, section, option, value): -- cgit v1.2.3