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
Signed by untrusted user: r4sas
GPG Key ID: 66F6C87B98EBCFE2

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