##// END OF EJS Templates
Fix line stripping edge case for %load magic command (#14495)...
M Bussonnier -
r28929:d0226573 merge
parent child Browse files
Show More
@@ -153,7 +153,9 b' def strip_initial_indent(lines):'
153
153
154 for line in it:
154 for line in it:
155 if line.startswith(indent):
155 if line.startswith(indent):
156 yield line[len(indent):]
156 yield line[len(indent) :]
157 elif line in ("\n", "\r\n") or len(line) == 0:
158 yield line
157 else:
159 else:
158 # Less indented than the first line - stop dedenting
160 # Less indented than the first line - stop dedenting
159 yield line
161 yield line
General Comments 0
You need to be logged in to leave comments. Login now