mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-08 00:20:59 +00:00
Merge pull request #116 from reinholdfuereder/issue-115-fix-version-warning
Do not fail to mkdir ~/.local/share/linkchecker/plugins when ~/.local/share is missing
This commit is contained in:
commit
ba60abb3bd
1 changed files with 1 additions and 1 deletions
|
|
@ -403,7 +403,7 @@ def make_userdir(child):
|
|||
# Windows forbids filenames with leading dot unless
|
||||
# a trailing dot is added.
|
||||
userdir += "."
|
||||
os.mkdir(userdir, 0700)
|
||||
os.makedirs(userdir, 0700)
|
||||
|
||||
|
||||
def get_user_config():
|
||||
|
|
|
|||
Loading…
Reference in a new issue