diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2014-09-10 14:52:54 -0400 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2014-09-10 14:52:54 -0400 |
commit | c134411257cef15e1abf0fa0df82314f9b0d6afa (patch) | |
tree | 711dead050e062c8baf2036cc56f649c5cc59251 /steuermann | |
parent | 9872e3b23d6602f533f023be5cf178aaf69b1b7a (diff) | |
download | steuermann-c134411257cef15e1abf0fa0df82314f9b0d6afa.tar.gz |
forgot import statement in nodes.py
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1320 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'steuermann')
-rw-r--r-- | steuermann/__init__.py | 2 | ||||
-rw-r--r-- | steuermann/nodes.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/steuermann/__init__.py b/steuermann/__init__.py index b811f10..9d1ab75 100644 --- a/steuermann/__init__.py +++ b/steuermann/__init__.py @@ -1,6 +1,6 @@ __version__ = '2.0dev' -allowed_flags = { +allowed_flags = { '--all' : '-a' , '-a' : '' , # run all nodes non-interactively '-r' : '=' , # give run name diff --git a/steuermann/nodes.py b/steuermann/nodes.py index fb674b8..d02cbf6 100644 --- a/steuermann/nodes.py +++ b/steuermann/nodes.py @@ -4,6 +4,7 @@ Stuff related to the tree structure of the command set import fnmatch import sys +from . import allowed_flags #import exyapps.runtime |