mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Fix severe bug with continuation lines
This commit is contained in:
parent
b2d0d9ce2e
commit
07d90fa476
1 changed files with 1 additions and 2 deletions
|
|
@ -222,8 +222,7 @@ class _Component(object):
|
||||||
else:
|
else:
|
||||||
rv.append(component)
|
rv.append(component)
|
||||||
else:
|
else:
|
||||||
line = line.strip()
|
if line.strip():
|
||||||
if line:
|
|
||||||
stack[-1].lines.append(line)
|
stack[-1].lines.append(line)
|
||||||
|
|
||||||
if multiple:
|
if multiple:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue