From 553b11bc84fd9f892bc5d69bf284595d2e4bfdc5 Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Tue, 29 Oct 2019 22:31:53 +0000 Subject: [PATCH] typo in error handler --- backfiller/backfiller/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backfiller/backfiller/main.py b/backfiller/backfiller/main.py index febff04..986f4a5 100644 --- a/backfiller/backfiller/main.py +++ b/backfiller/backfiller/main.py @@ -278,7 +278,7 @@ class BackfillerManager(object): except OSError as e: # ignore error when the file is already gone if e.errno != errno.ENOENT: - pass + raise try: os.rmdir(path)