Skip to content

Commit 8cfbb99

Browse files
committed
Fix trivial flake8 issue in test suite (last thing blocking a green build on Travis CI)
1 parent ebd6d74 commit 8cfbb99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apt_mirror_updater/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def is_mirror_url(self, base_url, stable_resource, expected_content):
8888
except TimeoutException:
8989
logger.warning("URL %s reported timeout, not failing test suite on this ..")
9090
self.mirror_cache[cache_key] = True
91-
except Exception as e:
91+
except Exception:
9292
logger.warning("URL %s triggered exception!", resource_url, exc_info=True)
9393
self.mirror_cache[cache_key] = False
9494
return self.mirror_cache[cache_key]

0 commit comments

Comments
 (0)