cctool

A tool for managing contacts and calendars.
git clone https://git.ce9e.org/cctool.git

commit
d9fbe68e41fb74bdbf269abaf065cba26d88351b
parent
cf99a23abc7bb7299ca01af2e237e1ddde1613f1
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2014-04-20 21:05
fix abook multidict parsing

Diffstat

M cctool.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/cctool.py b/cctool.py

@@ -156,7 +156,7 @@ class ABook(Format):
  156   156 		cp.readfp(fh)
  157   157 		for section in cp.sections():
  158   158 			if section != u'format':
  159    -1 				yield MultiDict({k: [v] for (k, v) in cp.items(section)})
   -1   159 				yield MultiDict({k: v.split(',') for (k, v) in cp.items(section)})
  160   160 
  161   161 	@classmethod
  162   162 	def dump(cls, data, fh):