bump requirements, fix pyflake8 things, unpin botocore/awscli

This commit is contained in:
Leo Hemsted
2018-11-07 13:39:08 +00:00
parent d46caa184e
commit 267c4fc07b
11 changed files with 29 additions and 26 deletions

View File

@@ -121,6 +121,6 @@ def escape_special_characters(string):
for special_character in ('\\', '_', '%', '/'):
string = string.replace(
special_character,
'\{}'.format(special_character)
r'\{}'.format(special_character)
)
return string