Skip to content

Commit

Permalink
Remove command line newline splitter. Only split by commas on command…
Browse files Browse the repository at this point in the history
… line options
  • Loading branch information
jyapayne committed Feb 25, 2017
1 parent abe72f0 commit 040caa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,8 +899,8 @@ def make_output_dirs(self, write_json=True):

output_blacklist = os.path.basename(self.output_dir())

blacklist_vals = re.split(r'\\n?,?\n?', blacklist_setting.value)
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)

self.file_tree.init(self.project_dir(),
blacklist=(blacklist_vals +
Expand Down

0 comments on commit 040caa8

Please sign in to comment.