From 4b941ff389707d1f6a5be1f422f2831ae9cc32c3 Mon Sep 17 00:00:00 2001 From: Angelos Evripiotis Date: Tue, 11 Jun 2019 10:10:16 +0100 Subject: cascache: refactor, rm some unused exception vars --- src/buildstream/_cas/cascache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/buildstream/_cas/cascache.py b/src/buildstream/_cas/cascache.py index 434e71663..ba520851c 100644 --- a/src/buildstream/_cas/cascache.py +++ b/src/buildstream/_cas/cascache.py @@ -246,7 +246,7 @@ class CASCache(): raise CASCacheError("Failed to pull ref {}: {}".format(ref, e)) from e else: return False - except BlobNotFound as e: + except BlobNotFound: return False # pull_tree(): @@ -400,7 +400,7 @@ class CASCache(): os.makedirs(os.path.dirname(objpath), exist_ok=True) os.link(tmp.name, objpath) - except FileExistsError as e: + except FileExistsError: # We can ignore the failed link() if the object is already in the repo. pass -- cgit v1.2.1