We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4987097 commit c27d584Copy full SHA for c27d584
mathicsscript/termshell.py
@@ -58,7 +58,7 @@
58
# Set up mathicsscript configuration directory
59
CONFIGHOME = os.environ.get("XDG_CONFIG_HOME", osp.expanduser("~/.config"))
60
CONFIGDIR = os.path.join(CONFIGHOME, "mathicsscript")
61
-os.makedir(CONFIGDIR, exist_ok=True)
+os.makedirs(CONFIGDIR, exist_ok=True)
62
63
try:
64
HISTSIZE = int(os.environ.get("MATHICSSCRIPT_HISTSIZE", 50))
0 commit comments