summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Sommer <gatoralli69@gmail.com>2013-10-20 05:25:19 -0500
committerJason Sommer <gatoralli69@gmail.com>2013-10-20 05:25:19 -0500
commitb438d028dc0b9c8f362301259fcfb9658aabb5df (patch)
tree70f98575774a125cbe31ed69bab26f8635d65648
parent8be4c1f0d3f07adea63c95d5b1d293f9222f9ccc (diff)
downloaddocker-py-b438d028dc0b9c8f362301259fcfb9658aabb5df.tar.gz
Fixed typo
-rw-r--r--docker/auth/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/auth/auth.py b/docker/auth/auth.py
index 22a9f96..c952f34 100644
--- a/docker/auth/auth.py
+++ b/docker/auth/auth.py
@@ -43,7 +43,7 @@ def expand_registry_url(hostname):
def resolve_repository_name(repo_name):
if '://' in repo_name:
- raise ValueError('Repository name can not contain a'
+ raise ValueError('Repository name cannot contain a '
'scheme ({0})'.format(repo_name))
parts = repo_name.split('/', 1)
if not '.' in parts[0] and not ':' in parts[0] and parts[0] != 'localhost':