Skip to content

Commit f750743

Browse files
Edwin18akx
authored andcommitted
frontend.py: Fix function argument
Previosly in function was passed raw value 'self.ignore_dirs', not a list as expected 'ignore_dirs'. Fixes for python-babel#832
1 parent e0d1018 commit f750743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

babel/messages/frontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ def finalize_options(self):
458458

459459
ignore_dirs = listify_value(self.ignore_dirs)
460460
if ignore_dirs:
461-
self.directory_filter = _make_directory_filter(self.ignore_dirs)
461+
self.directory_filter = _make_directory_filter(ignore_dirs)
462462
else:
463463
self.directory_filter = None
464464

0 commit comments

Comments
 (0)