From: Mike Bayer Date: Fri, 2 Feb 2007 17:06:41 +0000 (+0000) Subject: removed extra _find_cycles call X-Git-Tag: rel_0_3_5~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a90b73f1df56edcc8e50c4a5453ed8ff7d016c67;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git removed extra _find_cycles call --- diff --git a/lib/sqlalchemy/topological.py b/lib/sqlalchemy/topological.py index 4c58a2a0c5..566a83f92c 100644 --- a/lib/sqlalchemy/topological.py +++ b/lib/sqlalchemy/topological.py @@ -165,7 +165,6 @@ class QueueDependencySorter(object): # edges remain but no edgeless nodes to remove; this indicates # a cycle if allow_all_cycles: - x = self._find_cycles(edges) for cycle in self._find_cycles(edges): lead = cycle[0][0] lead.cycles = util.Set()