From e8baafa3b8893838d725fab2b9d00dd821f61b9e Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sun, 12 May 2019 09:44:02 -0500 Subject: [PATCH] makedirs, not mkdirs --- onionr/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/config.py b/onionr/config.py index 67bd0bb3..a546de17 100755 --- a/onionr/config.py +++ b/onionr/config.py @@ -97,7 +97,7 @@ def check(): ''' if not os.path.exists(os.path.dirname(get_config_file())): - os.path.makedirs(os.path.dirname(get_config_file())) + os.makedirs(os.path.dirname(get_config_file())) if not os.path.isfile(get_config_file()): open(get_config_file(), 'a', encoding="utf8").close() save()