From c134411257cef15e1abf0fa0df82314f9b0d6afa Mon Sep 17 00:00:00 2001 From: cslocum Date: Wed, 10 Sep 2014 18:52:54 +0000 Subject: forgot import statement in nodes.py git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1320 d34015c8-bcbb-4646-8ac8-8ba5febf221d --- steuermann/__init__.py | 2 +- steuermann/nodes.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 -- cgit