We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe72f0 commit 040caa8Copy full SHA for 040caa8
command_line.py
@@ -899,8 +899,8 @@ def make_output_dirs(self, write_json=True):
899
900
output_blacklist = os.path.basename(self.output_dir())
901
902
- blacklist_vals = re.split(r'\\n?,?\n?', blacklist_setting.value)
903
- whitelist_vals = re.split(r'\\n?,?\n?', whitelist_setting.value)
+ blacklist_vals = re.split(',?\n?', blacklist_setting.value)
+ whitelist_vals = re.split(',?\n?', whitelist_setting.value)
904
905
self.file_tree.init(self.project_dir(),
906
blacklist=(blacklist_vals +
0 commit comments