diff options
author | Alban Gruin | 2020-12-30 17:40:57 +0100 |
---|---|---|
committer | Alban Gruin | 2020-12-30 17:40:57 +0100 |
commit | 3e9d3b3437f2d63a47f9c962ba9187c5ef692328 (patch) | |
tree | 8b1f5e122ac9caeff3f56849a516e7b10d788d80 /src/ics.mli | |
parent | 8dff924f4d598da653794e29fb9929017e161aa3 (diff) |
ics: print the timezone name in the ICS file
Add the correct timezone in generated ICS files. The timezone is
fetched from /etc/timezone.
Even though this is not standard, if a tool needs it, it should be able
to understand it correctly.
Signed-off-by: Alban Gruin <alban at pa1ch dot fr>
Diffstat (limited to 'src/ics.mli')
-rw-r--r-- | src/ics.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ics.mli b/src/ics.mli index 219f851..a4cbbd6 100644 --- a/src/ics.mli +++ b/src/ics.mli @@ -26,4 +26,4 @@ end type t val make : Event.t list -> t -val to_string : t -> string +val to_string : string -> t -> string |