summaryrefslogtreecommitdiff
path: root/tmdblookup
diff options
context:
space:
mode:
authorNicolas Schodet2024-01-03 21:00:38 +0100
committerNicolas Schodet2024-01-12 19:00:24 +0100
commitad331b1e759521349c0a5548a97d96f4f1f653f6 (patch)
treefe0b5460b2865a735328df4c914de5d235bd4f78 /tmdblookup
parentb0779714a8a72f55205870f8fd618f77ff9fe348 (diff)
Fix duplicated configuration file path
Diffstat (limited to 'tmdblookup')
-rwxr-xr-xtmdblookup2
1 files changed, 1 insertions, 1 deletions
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__)