From a5f84fc681989462348f176f8f7f6205118a9dab Mon Sep 17 00:00:00 2001 From: pa_kt Date: Sat, 1 Sep 2012 21:23:22 +0300 Subject: [PATCH] Last arg has '\n' at the end, strip it. --- ccargparse.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ccargparse.py b/ccargparse.py index cd1d1db..9e2bf5d 100644 --- a/ccargparse.py +++ b/ccargparse.py @@ -55,6 +55,7 @@ def __process_data_line(line): """ log = logging.getLogger("process_data_line") + line = line.strip() line = line.split(" ") skip_next = False source_files = set()