diff options
| author | Claude Paroz <claude@2xlibre.net> | 2015-03-13 20:08:04 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2015-03-13 21:58:28 +0100 |
| commit | a52cd407b86a51e1badf6771e590361e24fd7155 (patch) | |
| tree | 0849a494da214a1c258f39cd5a7faaf334e57fa1 /django/shortcuts.py | |
| parent | b9d9ab23bdcc404708aada664e718a9d56415ca3 (diff) | |
Fed tuples to startswith when appropriate
Diffstat (limited to 'django/shortcuts.py')
| -rw-r--r-- | django/shortcuts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/shortcuts.py b/django/shortcuts.py index 415e51887e..5b1ec7d4ab 100644 --- a/django/shortcuts.py +++ b/django/shortcuts.py @@ -197,7 +197,7 @@ def resolve_url(to, *args, **kwargs): if isinstance(to, six.string_types): # Handle relative URLs - if any(to.startswith(path) for path in ('./', '../')): + if to.startswith(('./', '../')): return to # Next try a reverse URL resolution. |
