diff options
| author | Joshua Harlow <harlowja@yahoo-inc.com> | 2013-05-08 19:35:10 -0700 |
|---|---|---|
| committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2013-05-08 19:35:10 -0700 |
| commit | f4fa3f880655fa314c76d156830b84eb8301c9cd (patch) | |
| tree | f142b3e0ba608367c63ec5d6ccabf0b8815ae90b /taskflow/patterns | |
| parent | c83d4ab4e3d4bba6a591fd7eba11536b420b8753 (diff) | |
| download | taskflow-f4fa3f880655fa314c76d156830b84eb8301c9cd.tar.gz | |
Remove a few other references to nova
Diffstat (limited to 'taskflow/patterns')
| -rw-r--r-- | taskflow/patterns/linear_workflow.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/taskflow/patterns/linear_workflow.py b/taskflow/patterns/linear_workflow.py index 768b52e..bd6e2ae 100644 --- a/taskflow/patterns/linear_workflow.py +++ b/taskflow/patterns/linear_workflow.py @@ -18,14 +18,13 @@ import collections as dict_provider import copy +import logging # OrderedDict is only in 2.7 or greater :-( if not hasattr(dict_provider, 'OrderedDict'): import ordereddict as dict_provider -from nova import workflow -from nova.openstack.common import excutils -from nova.openstack.common import log as logging +from taskflow.openstack.common import excutils LOG = logging.getLogger(__name__) |
