Skip to content
Snippets Groups Projects
Commit f13c6859 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Avoid aliasing variables if we aren't going to use them.

parent 491be46e
No related branches found
No related tags found
No related merge requests found
Pipeline #315205 passed
......@@ -160,7 +160,7 @@ def compare_meta(path1, path2):
try:
stat1 = os.lstat(path1)
stat2 = os.lstat(path2)
except Exception as e:
except Exception:
return []
differences = []
......
......@@ -81,7 +81,7 @@ class FitContainer(Archive):
dest_path,
)
output = command.our_check_output(cmd)
command.our_check_output(cmd)
# Cannot rely on dumpimage returning a non-zero exit code on failure.
if not os.path.exists(dest_path):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment