From: Zac Medico Date: Fri, 12 Jan 2007 11:53:27 +0000 (-0000) Subject: Fix another typo. X-Git-Tag: v2.1.2~22 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3cd1a69a16e971af6ff88d962dff280d2849c4a9;p=portage.git Fix another typo. svn path=/main/trunk/; revision=5609 --- diff --git a/pym/portage_util.py b/pym/portage_util.py index d231e9fa6..40bdcb9cf 100644 --- a/pym/portage_util.py +++ b/pym/portage_util.py @@ -154,7 +154,7 @@ def stack_dicts(dicts, incremental=0, incrementals=[], ignore_none=0): final_dict[y] += " "+mydict[y][:] else: final_dict[y] = mydict[y][:] - mydict[y] = "".join(mydict[y].split()) # Remove extra spaces. + mydict[y] = " ".join(mydict[y].split()) # Remove extra spaces. return final_dict def stack_lists(lists, incremental=1):