aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Cordasco <sigmavirus24@users.noreply.github.com>2017-05-17 20:10:54 -0500
committerGitHub <noreply@github.com>2017-05-17 20:10:54 -0500
commit6cd73d0495f1999b9bc3086a91f4d3c8f3005aec (patch)
treef188a17832f5f319dd87c35009b850e733c0d8d9
parentf183e3fc1e5d248059174768b31e36529a513875 (diff)
parentd22480684878f707b0193943d8ed8e441729cbea (diff)
downloadplatform_external_python_uritemplates-6cd73d0495f1999b9bc3086a91f4d3c8f3005aec.tar.gz
platform_external_python_uritemplates-6cd73d0495f1999b9bc3086a91f4d3c8f3005aec.tar.bz2
platform_external_python_uritemplates-6cd73d0495f1999b9bc3086a91f4d3c8f3005aec.zip
Merge pull request #31 from thierryba/master
Fixed deprecation warnings in python 3.6
-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):