remove unused exception variable

Signed-off-by: r4sas <r4sas@i2pmail.org>
This commit is contained in:
r4sas
2020-06-22 11:33:34 +00:00
parent 5909e7330b
commit 94023a986d

View File

@@ -18,7 +18,7 @@ def read_config(filename):
try:
key, value = l.strip().split("=")
settings[key.strip()] = value.strip()
except ValueError as pe:
except ValueError:
PBinCLIError("Unable to parse config file, please check it for errors.")
return settings