From 0856063459dbfa4e72bd5bb221845cd350b06cfb Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Mon, 27 Feb 2017 00:39:07 +0100 Subject: [PATCH] It's called makedirs, not mkdirs... --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 51cbb89..9113ce2 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import configparser, os.path, tweepy, dbtools, getpass -os.mkdirs("media", exist_ok=True) +os.makedirs("media", exist_ok=True) if os.path.isfile("config.cfg"): print("config.cfg already exists. Please remove it before running this script.")