Skip to content

Commit

Permalink
update to latest editorconfig-core-py - fixes #29
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jun 3, 2014
1 parent fb574c2 commit 79b466e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editorconfig/fnmatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def fnmatch(name, pat):
If you don't want this, use fnmatchcase(FILENAME, PATTERN).
"""

name = os.path.normcase(name).replace(os.sep, "/")
name = os.path.normpath(name).replace(os.sep, "/")
return fnmatchcase(name, pat)


Expand Down

0 comments on commit 79b466e

Please sign in to comment.