Skip to content
Snippets Groups Projects
Commit 51cea28e authored by barillac's avatar barillac
Browse files

syntax error corrected

SVN: 32829
parent 4b05f314
No related branches found
No related tags found
No related merge requests found
......@@ -219,7 +219,7 @@ def updateFromBatchInput(bindings):
for annotableSampleType in getAllAnnotableSampleTypesForType(annotableType):
annotatedSamples = bindings.get(annotableSampleType)
if annotatedSamples != None and annotatedSamples != "":
for sampleLine in annotatedSamples.split("\""):
for sampleLine in annotatedSamples.split("\\"):
foundIdentifier = False
propertyTypes = getPropertyTypesForSampleTypeFromAnnotableType(annotableSampleType, annotableType)
sampleLink = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment