Skip to content

Commit

Permalink
TriBITS TriBITSPub#98: Fixing clone_extra_repos.py split('\n') with p…
Browse files Browse the repository at this point in the history
…latform agnostic splitlines().
  • Loading branch information
lefebvre committed Nov 24, 2015
1 parent 3605bfe commit 5628206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tribits/ci_support/clone_extra_repos.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def getHeaderOutputAndExtraReposDictList(rawOutputFromCmakefile):
headerOuput = ""
pythonDictListStr = ""
processingPythonDict = False
for line in rawOutputFromCmakefile.split("\n"):
for line in rawOutputFromCmakefile.splitlines():
if line == "*** Extra Repositories Python Dictionary":
processingPythonDict=True
continue
Expand Down

0 comments on commit 5628206

Please sign in to comment.