DanC / palmagent

originally semantic web sync code for palm devices, but since then a grab-bag of personal information management tools

Clone this repository (size: 591.9 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/DanC/palmagent/
commit 412: e703799a810f
parent 411: 9b91d42cc991
branch: default
uppercase FREQ in rrule for gdata
Dan Connolly
13 months ago

Changed (Δ8 bytes):

raw changeset »

toics.py (1 lines added, 1 lines removed)

Up to file-list toics.py:

@@ -24,5 +24,5 @@ def recur(v):
24
24
	vv['until'] = date(vv['until'])
25
25
	v = vv
26
26
27
    return ";".join(["%s=%s" % (k, v[k]) for k in v.keys()])
27
    return ";".join(["%s=%s" % (k.upper(), v[k]) for k in v.keys()])
28
28