From: Arfrever Frehtes Taifersar Arahesis Date: Fri, 9 Oct 2009 17:15:43 +0000 (-0000) Subject: Fix "TabError: inconsistent use of tabs and spaces in indentation" with Python 3... X-Git-Tag: v2.2_rc45~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d220f3eb6955b88cee4e7b7564c768d4e381da89;p=portage.git Fix "TabError: inconsistent use of tabs and spaces in indentation" with Python 3 which was introduced in r14522. svn path=/main/trunk/; revision=14524 --- diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index d015d9dc1..82364ad28 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -1572,7 +1572,7 @@ class depgraph(object): # If a non-virtual package and one or more virtual packages # are in expanded_atoms, use the non-virtual package. - if len(expanded_atoms) > 1: + if len(expanded_atoms) > 1: number_of_virtuals = 0 for expanded_atom in expanded_atoms: if expanded_atom.cp.startswith("virtual/"):