From 4b053519c89c1516f32fb89fcea43af3f301f801 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Sat, 4 Feb 2012 11:12:04 -0800 Subject: [PATCH] Update stack --- stack | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stack b/stack index f07b80b2..65705b71 100755 --- a/stack +++ b/stack @@ -40,8 +40,8 @@ from devstack.progs import actions def main(): args = opts.parse() try: - ran_ok = actions.run(args) - if not ran_ok: + started_ok = actions.run(args) + if not started_ok: me = utils.color_text((os.path.basename(sys.argv[0])), "red", True) me += " " + utils.color_text('--help', 'red') print("Perhaps you should try %s" % (me))