summaryrefslogtreecommitdiff
path: root/docker/utils/fnmatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'docker/utils/fnmatch.py')
-rw-r--r--docker/utils/fnmatch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/utils/fnmatch.py b/docker/utils/fnmatch.py
index cc940a2..90e9f60 100644
--- a/docker/utils/fnmatch.py
+++ b/docker/utils/fnmatch.py
@@ -108,7 +108,7 @@ def translate(pat):
stuff = '^' + stuff[1:]
elif stuff[0] == '^':
stuff = '\\' + stuff
- res = '%s[%s]' % (res, stuff)
+ res = f'{res}[{stuff}]'
else:
res = res + re.escape(c)