Ticket #20422: django-makemessages-ignore-patterns-1.5.patch
File django-makemessages-ignore-patterns-1.5.patch, 488 bytes (added by , 12 years ago) |
---|
-
django/core/management/commands/makemessages.py
old new 74 74 Helper function to check if the given path should be ignored or not. 75 75 """ 76 76 for pattern in ignore_patterns: 77 if fnmatch.fnmatchcase( path, pattern):77 if fnmatch.fnmatchcase(os.path.split(path)[-1], pattern): 78 78 return True 79 79 return False