Add ability for specific backends to enable template escaping. Closes #441.

This commit is contained in:
Steve Pulec 2015-11-03 09:25:47 -05:00
commit d3e4c2c4b5
6 changed files with 27 additions and 6 deletions

View file

@ -11,6 +11,7 @@ from .utils import region_from_glacier_url, vault_from_glacier_url
class GlacierResponse(_TemplateEnvironmentMixin):
def __init__(self, backend):
super(GlacierResponse, self).__init__()
self.backend = backend
@classmethod