##// END OF EJS Templates
Quick typo fix in nbformat/convert.py
Jonathan Frederic -
Show More
@@ -63,7 +63,7 b' def convert(nb, to_version):'
63 converted = convert_function(nb)
63 converted = convert_function(nb)
64 if converted.get('nbformat', 1) == version:
64 if converted.get('nbformat', 1) == version:
65 raise Exception("Cannot convert notebook from v%d to v%d. Operation" \
65 raise Exception("Cannot convert notebook from v%d to v%d. Operation" \
66 "failed silently." % (major, step_version))
66 "failed silently." % (version, step_version))
67
67
68 # Recursively convert until target version is reached.
68 # Recursively convert until target version is reached.
69 return convert(converted, to_version)
69 return convert(converted, to_version)
General Comments 0
You need to be logged in to leave comments. Login now