From 5b262362afa104377bff8509fb250aba0d753c15 Mon Sep 17 00:00:00 2001 From: Kload Date: Sat, 6 Oct 2012 18:09:38 +0200 Subject: [PATCH] Change try/except position --- yunohost | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yunohost b/yunohost index de174387..b3d72ac3 100755 --- a/yunohost +++ b/yunohost @@ -76,7 +76,7 @@ def str2fun(astr): try: func = getattr(mod, function) except NameError: - print 'Error: Function ' + category + '_' + action + '() is not been defined' + print 'Error: Function ' + category + '_' + action + '() is not defined' sys.exit(1) return func