From 6ae23bc0d7525f644cee0b88a86aa0954fc8a496 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 29 May 2023 14:56:47 +0200 Subject: [PATCH] fix typo --- src/borg/repository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/repository.py b/src/borg/repository.py index 3cf4fd1af..c2340d401 100644 --- a/src/borg/repository.py +++ b/src/borg/repository.py @@ -1566,7 +1566,7 @@ def clear_empty_dirs(self): os.rmdir(segment_dir) except OSError: # OSError is raised by os.rmdir if directory is not empty. This is expected. - # It's subclass FileNotFoundError may be raised if the directory already does not exist. Ignorable. + # Its subclass FileNotFoundError may be raised if the directory already does not exist. Ignorable. pass sync_dir(data_dir)