aboutsummaryrefslogtreecommitdiffstats
path: root/uritemplate
diff options
context:
space:
mode:
authorThierry Bastian <thierryb@filewave.com>2017-04-07 14:07:44 +0200
committerThierry Bastian <thierryb@filewave.com>2017-04-07 14:07:44 +0200
commitd22480684878f707b0193943d8ed8e441729cbea (patch)
treef188a17832f5f319dd87c35009b850e733c0d8d9 /uritemplate
parentf183e3fc1e5d248059174768b31e36529a513875 (diff)
downloadplatform_external_python_uritemplates-d22480684878f707b0193943d8ed8e441729cbea.tar.gz
platform_external_python_uritemplates-d22480684878f707b0193943d8ed8e441729cbea.tar.bz2
platform_external_python_uritemplates-d22480684878f707b0193943d8ed8e441729cbea.zip
Fixed deprecation warnings in python 3.6.1
Diffstat (limited to 'uritemplate')
-rw-r--r--uritemplate/template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uritemplate/template.py b/uritemplate/template.py
index c9d7c7e..ceca8eb 100644
--- a/uritemplate/template.py
+++ b/uritemplate/template.py
@@ -18,7 +18,7 @@ What do you do?
import re
from uritemplate.variable import URIVariable
-template_re = re.compile('{([^\}]+)}')
+template_re = re.compile('{([^}]+)}')
def _merge(var_dict, overrides):