From 9291ca1d063a03477c910eaaa5abb034bdc42a4e Mon Sep 17 00:00:00 2001 From: lim Date: Thu, 21 Jun 2012 14:36:26 +0000 Subject: lim fixed _remove_orphaned_nodes typo in graph.py git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/branches/sphere@17446 fe389314-cf27-0410-b35b-8c050e845b92 Former-commit-id: 07c568808795ad234c035a67ed6b74f42875eb29 --- lib/graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/graph.py') diff --git a/lib/graph.py b/lib/graph.py index c36bf6c..491f2fa 100644 --- a/lib/graph.py +++ b/lib/graph.py @@ -479,7 +479,7 @@ class Graph: self._sanity_check("union - remove interior edges") self._remove_3ary_edges() self._sanity_check("union - remove 3ary edges") - self._remove_orphan_nodes() + self._remove_orphaned_nodes() self._sanity_check("union - remove orphan nodes", True) return self._trace() @@ -504,7 +504,7 @@ class Graph: self._sanity_check("intersection - remove exterior edges") self._remove_3ary_edges(large_first=True) self._sanity_check("intersection - remove 3ary edges") - self._remove_orphan_nodes() + self._remove_orphaned_nodes() self._sanity_check("intersection - remove orphan nodes", True) return self._trace() -- cgit