From 56ced722437dc78ff136183f2a02d39b39575ada Mon Sep 17 00:00:00 2001 From: Ryan Morlok Date: Thu, 13 Mar 2014 12:03:49 -0500 Subject: [PATCH] Fixed typo in exception message --- webapp2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp2.py b/webapp2.py index 96dc905..396182f 100755 --- a/webapp2.py +++ b/webapp2.py @@ -994,7 +994,7 @@ def _build(self, args, kwargs): value = str(value) if not regex.match(value): - raise ValueError('URI buiding error: Value "%s" is not ' + raise ValueError('URI building error: Value "%s" is not ' 'supported for argument "%s".' % (value, name.strip('_'))) values[name] = value