From a3421709fe2bb5e26385516c234f2e6c9ababb19 Mon Sep 17 00:00:00 2001 From: Christian Parpart Date: Fri, 31 Jan 2020 14:26:55 +0100 Subject: [PATCH] python: Fixing some python2-to-python3 migrations that I missed in the last PR. --- scripts/splitSources.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/splitSources.py b/scripts/splitSources.py index d99ffb072..01a9f9278 100755 --- a/scripts/splitSources.py +++ b/scripts/splitSources.py @@ -27,8 +27,8 @@ def extractSourceName(line): # writes the following source into a file named sourceName def writeSourceToFile(lines): filePath, srcName = extractSourceName(lines[0]) - # print "sourceName is", srcName - # print "filePath is", filePath + # print("sourceName is ", srcName) + # print("filePath is", filePath) if filePath != False: os.system("mkdir -p " + filePath) f = open(srcName, mode='a+', encoding='utf8')