summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/migrate-chunks6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/migrate-chunks b/scripts/migrate-chunks
index 3f836188..92252d3a 100755
--- a/scripts/migrate-chunks
+++ b/scripts/migrate-chunks
@@ -151,14 +151,14 @@ def download_chunks(morph):
fixed_chunk = loader.parse_morphology_text(chunk_morph, name)
fixed_chunk['description'] = fixed_chunk.pop('comments')
loader.save_to_file(chunk['morph'], fixed_chunk)
- print "Fixing error in %s and moving into %s.\n" %(name, chunk['morph'])
+ print "Fixing error in %s and moving into %s." %(name, chunk['morph'])
if "buildsystem" in str(err):
# This error is caused because a typo in a morphology which
# has a field "buildsystem" instead of "build-system".
fixed_chunk = loader.parse_morphology_text(chunk_morph, name)
fixed_chunk['build-system'] = fixed_chunk.pop('buildsystem')
loader.save_to_file(chunk['morph'], fixed_chunk)
- print "Fixing error in %s and moving into %s\n" %(name, chunk['morph'])
+ print "Fixing error in %s and moving into %s" %(name, chunk['morph'])
except morphlib.morphloader.MorphologyNotYamlError as err:
print "ERROR: %s in chunk %s.\n" % (err, chunk_morph)
# This error is caused because there are old morphologies written
@@ -169,7 +169,7 @@ def download_chunks(morph):
fix_chunk = chunk_morph.replace('\t','')
new_chunk = loader.load_from_string(fix_chunk)
loader.save_to_file(chunk['morph'], new_chunk)
- print "Fixing error in %s and moving into %s.\n" %(name, chunk['morph'])
+ print "Fixing error in %s and moving into %s." %(name, chunk['morph'])
def move_strata(morphs):
# Create strata directory