summaryrefslogtreecommitdiff
path: root/pecan/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'pecan/core.py')
-rw-r--r--pecan/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pecan/core.py b/pecan/core.py
index 49c7e8e..4a2c9be 100644
--- a/pecan/core.py
+++ b/pecan/core.py
@@ -344,7 +344,7 @@ class PecanBase(object):
return unquote_plus(x) if isinstance(x, six.string_types) \
else x
- remainder = [_decode(x) for x in remainder]
+ remainder = [_decode(x) for x in remainder if x]
if im_self is not None:
args.append(im_self)