Remove extra space in output.

This commit is contained in:
David Cantrell 2008-10-05 15:43:09 -10:00
parent e666948409
commit 77684f0271
1 changed files with 3 additions and 3 deletions

View File

@ -68,10 +68,10 @@ def collectRepos(args):
for repospec in args:
if repospec.startswith('/'):
repo = "file://%s" % (repospec,)
print("Adding local repo:\n %s" % (repo,))
print("Adding local repo:\n %s" % (repo,))
repolist.append(repo)
elif repospec.startswith('http://') or repospec.startswith('ftp://'):
print("Adding remote repo:\n %s" % (repospec,))
print("Adding remote repo:\n %s" % (repospec,))
repolist.append(repospec)
repo = repolist[0]
@ -79,7 +79,7 @@ def collectRepos(args):
if len(repolist) > 1:
for extra in repolist[1:]:
print("Adding extra repo:\n %s" % (extra,))
print("Adding extra repo:\n %s" % (extra,))
extrarepos.append(extra)
return repo, extrarepos