From afc21aa8cedf4426acd8f567c6730d4dfa4b95a7 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Sat, 25 May 2019 09:16:34 +0200 Subject: [PATCH] Update certbot/compat/os.py Co-Authored-By: ohemorange --- certbot/compat/os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/compat/os.py b/certbot/compat/os.py index 83de46fa3..f652b55c1 100644 --- a/certbot/compat/os.py +++ b/certbot/compat/os.py @@ -35,7 +35,7 @@ del ourselves, std_os, std_sys # mode, and will create a file with the same flaws that what have been described for os.chown. # So upon file creation, security.take_ownership will be called to ensure current user is the owner # of the file, and security.chmod will do the same thing than for the modified os.chown. -# Internally, take_ownership will update the existing metdata of the file, to set the current +# Internally, take_ownership will update the existing metadata of the file, to set the current # username (determined by the win32api module) as the owner of the file. def open(*unused_args, **unused_kwargs): # pylint: disable=function-redefined """Method os.open() is forbidden"""