From c48c85b5e1e95c329bb138078aaddd396dfb8a96 Mon Sep 17 00:00:00 2001 From: Solderpunk Date: Sat, 23 May 2020 13:18:37 +0200 Subject: [PATCH] Notify upon creation of config directory. --- av98.py | 1 + 1 file changed, 1 insertion(+) diff --git a/av98.py b/av98.py index 932890c..44a0486 100755 --- a/av98.py +++ b/av98.py @@ -235,6 +235,7 @@ class GeminiClient(cmd.Cmd): self.config_dir = os.path.expanduser("~/.config/av98/") else: self.config_dir = os.path.expanduser("~/.av98/") + print("Creating config directory {}".format(self.config_dir)) os.makedirs(self.config_dir) self.no_cert_prompt = "\x1b[38;5;76m" + "AV-98" + "\x1b[38;5;255m" + "> " + "\x1b[0m"