mirror of https://github.com/django/django.git
Removed unused default value None to matches_patterns().
An iterable is always passed.
This commit is contained in:
parent
6b61b8b904
commit
13993e0f38
|
@ -5,12 +5,12 @@ from django.conf import settings
|
|||
from django.core.exceptions import ImproperlyConfigured
|
||||
|
||||
|
||||
def matches_patterns(path, patterns=None):
|
||||
def matches_patterns(path, patterns):
|
||||
"""
|
||||
Return True or False depending on whether the ``path`` should be
|
||||
ignored (if it matches any pattern in ``ignore_patterns``).
|
||||
"""
|
||||
return any(fnmatch.fnmatchcase(path, pattern) for pattern in (patterns or []))
|
||||
return any(fnmatch.fnmatchcase(path, pattern) for pattern in patterns)
|
||||
|
||||
|
||||
def get_files(storage, ignore_patterns=None, location=''):
|
||||
|
|
Loading…
Reference in New Issue