mirror of https://github.com/django/django.git
Used modern idiom in collectstatic command.
Replaced set(<generator expression>) with set comprehension.
This commit is contained in:
parent
6e026aec5f
commit
6b61b8b904
|
@ -79,7 +79,7 @@ class Command(BaseCommand):
|
||||||
ignore_patterns = options['ignore_patterns']
|
ignore_patterns = options['ignore_patterns']
|
||||||
if options['use_default_ignore_patterns']:
|
if options['use_default_ignore_patterns']:
|
||||||
ignore_patterns += apps.get_app_config('staticfiles').ignore_patterns
|
ignore_patterns += apps.get_app_config('staticfiles').ignore_patterns
|
||||||
self.ignore_patterns = list(set(os.path.normpath(p) for p in ignore_patterns))
|
self.ignore_patterns = list({os.path.normpath(p) for p in ignore_patterns})
|
||||||
self.post_process = options['post_process']
|
self.post_process = options['post_process']
|
||||||
|
|
||||||
def collect(self):
|
def collect(self):
|
||||||
|
|
Loading…
Reference in New Issue