Skip to content

Commit c27d584

Browse files
committed
Fixed typo
1 parent 4987097 commit c27d584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mathicsscript/termshell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# Set up mathicsscript configuration directory
5959
CONFIGHOME = os.environ.get("XDG_CONFIG_HOME", osp.expanduser("~/.config"))
6060
CONFIGDIR = os.path.join(CONFIGHOME, "mathicsscript")
61-
os.makedir(CONFIGDIR, exist_ok=True)
61+
os.makedirs(CONFIGDIR, exist_ok=True)
6262

6363
try:
6464
HISTSIZE = int(os.environ.get("MATHICSSCRIPT_HISTSIZE", 50))

0 commit comments

Comments
 (0)