summaryrefslogtreecommitdiffstats
path: root/pym/portage/getbinpkg.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-10-09 22:13:04 +0000
committerZac Medico <zmedico@gentoo.org>2009-10-09 22:13:04 +0000
commit6430efa0bcf9379b50ccaea0e1c2b2ea347ea212 (patch)
treeb440d25866e44eb185b9060418a4f25d95b314c7 /pym/portage/getbinpkg.py
parent5faa8b31f5f34527a627acfe77b1d6715ac4ce76 (diff)
downloadportage-6430efa0bcf9379b50ccaea0e1c2b2ea347ea212.tar.gz
portage-6430efa0bcf9379b50ccaea0e1c2b2ea347ea212.tar.bz2
portage-6430efa0bcf9379b50ccaea0e1c2b2ea347ea212.zip
Bug #274497 - Misc spelling, grammar, and terminology fixes, including
URL -> URI and FOO's -> FOOs. svn path=/main/trunk/; revision=14531
Diffstat (limited to 'pym/portage/getbinpkg.py')
-rw-r--r--pym/portage/getbinpkg.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pym/portage/getbinpkg.py b/pym/portage/getbinpkg.py
index 69ae56fa5..42938de99 100644
--- a/pym/portage/getbinpkg.py
+++ b/pym/portage/getbinpkg.py
@@ -107,7 +107,7 @@ def create_conn(baseurl,conn=None):
parts = baseurl.split("://",1)
if len(parts) != 2:
- raise ValueError(_("Provided URL does not "
+ raise ValueError(_("Provided URI does not "
"contain protocol identifier. '%s'") % baseurl)
protocol,url_parts = parts
del parts
@@ -315,7 +315,7 @@ def match_in_array(array, prefix="", suffix="", match_both=1, allow_overlap=0):
def dir_get_list(baseurl,conn=None):
"""(baseurl[,connection]) -- Takes a base url to connect to and read from.
- URL should be in the for <proto>://<site>[:port]<path>
+ URI should be in the form <proto>://<site>[:port]<path>
Connection is used for persistent connection instances."""
if not conn:
@@ -363,7 +363,7 @@ def dir_get_list(baseurl,conn=None):
def file_get_metadata(baseurl,conn=None, chunk_size=3000):
"""(baseurl[,connection]) -- Takes a base url to connect to and read from.
- URL should be in the for <proto>://<site>[:port]<path>
+ URI should be in the form <proto>://<site>[:port]<path>
Connection is used for persistent connection instances."""
if not conn:
@@ -414,7 +414,7 @@ def file_get_metadata(baseurl,conn=None, chunk_size=3000):
def file_get(baseurl,dest,conn=None,fcmd=None):
"""(baseurl,dest,fcmd=) -- Takes a base url to connect to and read from.
- URL should be in the for <proto>://[user[:pass]@]<site>[:port]<path>"""
+ URI should be in the form <proto>://[user[:pass]@]<site>[:port]<path>"""
if not fcmd:
return file_get_lib(baseurl,dest,conn)
@@ -442,7 +442,7 @@ def file_get(baseurl,dest,conn=None,fcmd=None):
def file_get_lib(baseurl,dest,conn=None):
"""(baseurl[,connection]) -- Takes a base url to connect to and read from.
- URL should be in the for <proto>://<site>[:port]<path>
+ URI should be in the form <proto>://<site>[:port]<path>
Connection is used for persistent connection instances."""
if not conn: