summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-01-12 11:49:36 +0000
committerZac Medico <zmedico@gentoo.org>2007-01-12 11:49:36 +0000
commit34a2a2128af5994c74222efa08a95d651f2a5fee (patch)
tree3b1a6d3524988260605c6ab27a14d4b3aaea83c8 /pym
parentRevert accidentally modified joins. (diff)
downloadportage-multirepo-34a2a2128af5994c74222efa08a95d651f2a5fee.tar.gz
portage-multirepo-34a2a2128af5994c74222efa08a95d651f2a5fee.tar.bz2
portage-multirepo-34a2a2128af5994c74222efa08a95d651f2a5fee.zip
Fix more typos.
svn path=/main/trunk/; revision=5608
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 9ce0347e..55e84788 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -822,7 +822,7 @@ def ExtractKernelVersion(base_dir):
# Check the .config for a CONFIG_LOCALVERSION and append that too, also stripping whitespace
kernelconfig = getconfig(base_dir+"/.config")
if kernelconfig and kernelconfig.has_key("CONFIG_LOCALVERSION"):
- version += " ".join(kernelconfig["CONFIG_LOCALVERSION"].split())
+ version += "".join(kernelconfig["CONFIG_LOCALVERSION"].split())
return (version,None)
@@ -5568,7 +5568,7 @@ class portdbapi(dbapi):
mydig = self.findname2(mycpv)[0]
if not mydig:
return ""
- mydigs = mydic.split("/")[:-1]
+ mydigs = mydig.split("/")[:-1]
mydig = "/".join(mydigs)
mysplit = mycpv.split("/")
except OSError: