From 3c68a1a48419d8b2bbc2ce0e7f1700b996ec30e9 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 19 Oct 2012 21:52:48 -0400 Subject: [PATCH] project: for consistency, also separate ignored paths with pipes. --- update_copyright/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_copyright/project.py b/update_copyright/project.py index dd9b2a8..3202878 100644 --- a/update_copyright/project.py +++ b/update_copyright/project.py @@ -124,7 +124,7 @@ class Project (object): except _configparser.NoOptionError: pass else: - self._ignored_paths = [pth.strip() for pth in ignored.split(',')] + self._ignored_paths = [pth.strip() for pth in ignored.split('|')] try: pyfile = parser.get('files', 'pyfile') except _configparser.NoOptionError: -- 2.26.2