From d220f3eb6955b88cee4e7b7564c768d4e381da89 Mon Sep 17 00:00:00 2001 From: Arfrever Frehtes Taifersar Arahesis Date: Fri, 9 Oct 2009 17:15:43 +0000 Subject: [PATCH] Fix "TabError: inconsistent use of tabs and spaces in indentation" with Python 3 which was introduced in r14522. svn path=/main/trunk/; revision=14524 --- pym/_emerge/depgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/"): -- 2.26.2