urls: Remove raw string syntax on one line.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2020-09-22 15:26:36 -07:00
parent fd20e54c79
commit 66ce8903d3
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ v1_api_and_json_patterns = [
# It's important that this sit after users/me/presence so that
# Django's URL resolution order doesn't break the
# /users/me/presence endpoint.
rest_path(r'users/<email>/presence',
rest_path('users/<email>/presence',
GET=get_presence_backend),
rest_path('realm/presence',
GET=get_statuses_for_realm),