diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-01-12 11:49:36 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-01-12 11:49:36 +0000 |
commit | 34a2a2128af5994c74222efa08a95d651f2a5fee (patch) | |
tree | 3b1a6d3524988260605c6ab27a14d4b3aaea83c8 | |
parent | e25aa447ac3474f74e7035f8505509eba29aada6 (diff) | |
download | portage-34a2a2128af5994c74222efa08a95d651f2a5fee.tar.gz portage-34a2a2128af5994c74222efa08a95d651f2a5fee.tar.bz2 portage-34a2a2128af5994c74222efa08a95d651f2a5fee.zip |
Fix more typos.
svn path=/main/trunk/; revision=5608
-rw-r--r-- | pym/portage.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py index 9ce0347e1..55e847887 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: |