summaryrefslogtreecommitdiff
path: root/docs/topics/http/urls.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/http/urls.txt')
-rw-r--r--docs/topics/http/urls.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index ee1d4e8616..2f272c5095 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -964,7 +964,7 @@ information about the URL pattern that matches a URL::
# Resolve a URL
match = resolve('/some/path/')
# Print the URL pattern that matches the URL
- print match.url_name
+ print(match.url_name)
A :class:`ResolverMatch` object can also be assigned to a triple::