Tue, 12 Dec 2023 09:35:39 +0100
Changed code using "shutil.rmtree()" more readable by adding "ignore_errors=" where this parameter is non-default.
# -*- coding: utf-8 -*- # Copyright (c) 2014 - 2023 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module defining configuration variables for the Git package. """ # Available protocols for the repository URL ConfigGitSchemes = [ "file", "ftp", "ftps", "git", "http", "https", "rsync", "ssh", "ssh+scp", ]