ya3

ya3 -- yet another appointment application
Log | Files | Refs

commit 6e3f72f41d67643789a77ef81badb796937fcc01
parent 35031b1c2f8a59adad07a04c36c587ade1094bde
Author: Matthias Balk <matthias.balk@fotopuzzle.de>
Date:   Mon,  1 Oct 2018 10:43:35 +0200

corrected PRODID (?)

Diffstat:
Mcommands.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands.py b/commands.py @@ -29,7 +29,7 @@ def _event2file(event): re.sub(r'\s+', '-', event['SUMMARY'].lower())) f = open(os.path.join(config.CAL_DIR, filename), 'w') f.write('BEGIN:VCALENDAR\nVERSION:2.0\n') - f.write('PRODID://ya3//yet another appointment application//\n') + f.write('PRODID:-//ya3//yet another appointment application//\n') def item2str(key, value): if isinstance(value, datetime):