summaryrefslogtreecommitdiff
path: root/paste/fixture.py
diff options
context:
space:
mode:
authornovalis <devnull@localhost>2007-08-22 22:24:56 +0000
committernovalis <devnull@localhost>2007-08-22 22:24:56 +0000
commit600ff9cab4ab8b067c9f30e3831535fb8d8bf262 (patch)
tree6eb34ac01d681cea8fb2e5fabeafda5578dd288c /paste/fixture.py
parenta7d19c85e2d2baf3f44000f6b582783eb3d661de (diff)
downloadpaste-600ff9cab4ab8b067c9f30e3831535fb8d8bf262.tar.gz
tag names include namespace, so form:error tags are not incorrectly picked up
Diffstat (limited to 'paste/fixture.py')
-rw-r--r--paste/fixture.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/fixture.py b/paste/fixture.py
index 9d2eb96..a9ac2c8 100644
--- a/paste/fixture.py
+++ b/paste/fixture.py
@@ -910,7 +910,7 @@ class Form(object):
# @@: This really should be using Mechanize/ClientForm or
# something...
- _tag_re = re.compile(r'<(/?)([a-z0-9_\-]*)([^>]*?)>', re.I)
+ _tag_re = re.compile(r'<(/?)([:a-z0-9_\-]*)([^>]*?)>', re.I)
def __init__(self, response, text):
self.response = response