From 2c7e6502f87ee077188fa86b8e8f2ac9e0018169 Mon Sep 17 00:00:00 2001 From: Solderpunk Date: Sat, 23 May 2020 13:24:39 +0200 Subject: [PATCH] Fix umask call. --- av98.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/av98.py b/av98.py index 44a0486..7d5f50b 100755 --- a/av98.py +++ b/av98.py @@ -220,7 +220,7 @@ class GeminiClient(cmd.Cmd): # Set umask so that nothing we create can be read by anybody else. # The certificate cache and TOFU database contain "browser history" # type sensitivie information. - os.umask(077) + os.umask(0o077) # Find config directory ## Look for something pre-existing