summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-06-01 19:59:44 +0200
committerGuido Günther <agx@sigxcpu.org>2011-06-01 20:04:31 +0200
commit80b984bbe149b9875538eb95228bb8608ffb0803 (patch)
tree3b95c731d85a9c3a6c8b81c23afe226e902d12bf
parente335761b6b7040c5e95a925fd5d1110b723bb9c4 (diff)
Restore original upstream behaviour
on unrecognized parameters Closes: #569273
-rw-r--r--debian/patches/0003-Treat-untils-as-floating.patch21
1 files changed, 4 insertions, 17 deletions
diff --git a/debian/patches/0003-Treat-untils-as-floating.patch b/debian/patches/0003-Treat-untils-as-floating.patch
index ec978d3..679076b 100644
--- a/debian/patches/0003-Treat-untils-as-floating.patch
+++ b/debian/patches/0003-Treat-untils-as-floating.patch
@@ -1,13 +1,13 @@
From: Morgen Sagen <sagen@apple.com>
Date: Mon, 4 Jan 2010 20:27:01 +0100
-Subject: [PATCH] Treat untils as floating
+Subject: Treat untils as floating
---
- vobject/icalendar.py | 19 ++++++++++++++++---
- 1 files changed, 16 insertions(+), 3 deletions(-)
+ vobject/icalendar.py | 14 +++++++++++++-
+ 1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/vobject/icalendar.py b/vobject/icalendar.py
-index 4a1da7c..8917476 100644
+index 4a1da7c..b960deb 100644
--- a/vobject/icalendar.py
+++ b/vobject/icalendar.py
@@ -427,6 +427,18 @@ class RecurringComponent(Component):
@@ -38,17 +38,4 @@ index 4a1da7c..8917476 100644
del self.contents[name]
setlist = getattr(rruleset, '_' + name)
if name in DATENAMES:
-@@ -1663,9 +1675,10 @@ def stringToTextValues(s, listSeparator=',', charList=None, strict=False):
- else:
- current.append(char)
- else:
-- state = "read normal"
-+ #state = "read normal"
- # leave unrecognized escaped characters for later passes
-- current.append('\\' + char)
-+ #current.append('\\' + char)
-+ raise ParseError("error: illegal escape sequence: '\\%s'" % (char,))
-
- elif state == "end": #an end state
- if len(current) or len(results) == 0:
--