Skip to content

Commit 758ee35

Browse files
committed
Ooops. Committed a version of ipr/search.py used to generate 500 errors for testing. Corrected here.
- Legacy-Id: 763
1 parent cfa17c4 commit 758ee35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def search(request, type="", q="", id=""):
8484
if q:
8585
# normalize the draft name.
8686
q = q.strip()
87-
q = re.sub("\.txt$","")
87+
q = re.sub("\.txt$","",q)
8888
q = re.sub("-\d\d$","",q)
8989
start = InternetDraft.objects.filter(filename__contains=q)
9090
if id:

0 commit comments

Comments
 (0)