瀏覽代碼

added comment regarding line breaks

Fabian Peter Hammerle 5 年之前
父節點
當前提交
01af2e2f59
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      ical2vdir/__init__.py

+ 3 - 0
ical2vdir/__init__.py

@@ -93,6 +93,9 @@ def _write_event(event: icalendar.cal.Event, path: pathlib.Path):
         prefix="ical2vdir-", suffix=_VDIR_EVENT_FILE_EXTENSION
     )
     try:
+        # > Content lines are delimited by a line break,
+        # > which is a CRLF sequence [...]
+        # https://tools.ietf.org/html/rfc5545#section-3.1
         os.write(temp_fd, event.to_ical())
         os.close(temp_fd)
         os.rename(temp_path, path)