Skip to content

Commit 89f95d6

Browse files
author
Vespian
committed
Small fix for python 3.2
Change-Id: Icbfb25afa3f750ac98ac5cdd4dcd68cf24fbad61
1 parent 6ce9ff2 commit 89f95d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/moduletests/check_growth/test_check_growth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ def setUp(self):
450450

451451
try:
452452
os.unlink(self.history_file)
453-
except FileNotFoundError:
453+
except (OSError, IOError):
454454
pass
455455

456456
check_growth.HistoryFile.init(self.history_file, self.max_averaging_window,

0 commit comments

Comments
 (0)