Start fleshing out support for robots.
This commit is contained in:
parent
f8ae8ed6cd
commit
026ed7ffb4
5 changed files with 176 additions and 28 deletions
|
@ -20,3 +20,7 @@ def parse_repository_name(f):
|
|||
(namespace, repository) = parse_namespace_repository(repository)
|
||||
return f(namespace, repository, *args, **kwargs)
|
||||
return wrapper
|
||||
|
||||
|
||||
def format_robot_username(parent_username, robot_shortname):
|
||||
return '%s+%s' % (parent_username, robot_shortname)
|
||||
|
|
Reference in a new issue