summaryrefslogtreecommitdiff
path: root/lib/graph.py
diff options
context:
space:
mode:
authorlim <lim@stsci.edu>2012-06-21 10:36:26 -0400
committerlim <lim@stsci.edu>2012-06-21 10:36:26 -0400
commit9291ca1d063a03477c910eaaa5abb034bdc42a4e (patch)
treeb4cf8037f6a6ce26712f568299568b96f28f4ecb /lib/graph.py
parent00ba09f08ecb9357d1a465b047e13b07d5769bc3 (diff)
downloadstsci.sphere-9291ca1d063a03477c910eaaa5abb034bdc42a4e.tar.gz
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
Diffstat (limited to 'lib/graph.py')
-rw-r--r--lib/graph.py4
1 files changed, 2 insertions, 2 deletions
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()