Skip to content

Commit

Permalink
Enhance filtering on the driver interface
Browse files Browse the repository at this point in the history
Docker-DCO-1.1-Signed-off-by: Olivier Gambier <[email protected]> (github: dmp42)
  • Loading branch information
Olivier Gambier committed Aug 26, 2014
1 parent f597055 commit 1d888cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions depends/docker-registry-core/docker_registry/core/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ def check(value):
value = str(value)
if value == '..':
value = '%2E%2E'
if value == '.':
value = '%2E'
return urllib.quote_plus(value)


Expand Down

0 comments on commit 1d888cf

Please sign in to comment.