summaryrefslogtreecommitdiff
path: root/taskflow/patterns
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2013-05-17 13:32:59 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2013-05-17 13:32:59 -0700
commitb247bc6031c0e679d93a836d372981c5e5bc1cd0 (patch)
treec25fb29471e791f4e728e1ac75e0933101620dc8 /taskflow/patterns
parentbe0ca7b605821910dc696f681b9a22769780735a (diff)
downloadtaskflow-b247bc6031c0e679d93a836d372981c5e5bc1cd0.tar.gz
Fix the import.
Diffstat (limited to 'taskflow/patterns')
-rw-r--r--taskflow/patterns/graph_workflow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/patterns/graph_workflow.py b/taskflow/patterns/graph_workflow.py
index d25c2cd..8f8f05e 100644
--- a/taskflow/patterns/graph_workflow.py
+++ b/taskflow/patterns/graph_workflow.py
@@ -25,7 +25,7 @@ from networkx.algorithms import dag
from networkx.classes import digraph
from taskflow import exceptions as exc
-from taskflow import ordered_workflow
+from taskflow.patterns import ordered_workflow
LOG = logging.getLogger(__name__)