diff options
| author | Ian Cordasco <sigmavirus24@users.noreply.github.com> | 2017-05-17 20:10:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-17 20:10:54 -0500 |
| commit | 6cd73d0495f1999b9bc3086a91f4d3c8f3005aec (patch) | |
| tree | f188a17832f5f319dd87c35009b850e733c0d8d9 | |
| parent | f183e3fc1e5d248059174768b31e36529a513875 (diff) | |
| parent | d22480684878f707b0193943d8ed8e441729cbea (diff) | |
| download | platform_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.py | 2 |
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): |
