From ad331b1e759521349c0a5548a97d96f4f1f653f6 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Wed, 3 Jan 2024 21:00:38 +0100 Subject: Fix duplicated configuration file path --- tmdblookup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmdblookup') diff --git a/tmdblookup b/tmdblookup index 0b49a53..1079f5c 100755 --- a/tmdblookup +++ b/tmdblookup @@ -120,7 +120,7 @@ def parse(args): defaults = {} # Parse configuration. config = configparser.ConfigParser() - config.read([os.path.expanduser(CONFIG), os.path.expanduser(CONFIG)]) + config.read([os.path.expanduser(CONFIG)]) defaults.update(dict(config.items("DEFAULT"))) # Parse options. p = argparse.ArgumentParser(description=__doc__) -- cgit v1.2.3