diff options
author | Christian Pointner <equinox@helsinki.at> | 2017-01-11 15:51:39 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2017-01-11 15:57:11 (GMT) |
commit | f986b2d95200eed6f87b2171165e268fc27fad7c (patch) | |
tree | 479f7a2c5c4f33e061cc58c6b24d52267d7cda0f /lib | |
parent | 6f1430c4bc4216d6c074656a8ac907bd653e9c91 (diff) |
add show group sanity check
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/RHRD/utils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/RHRD/utils.pm b/lib/RHRD/utils.pm index ad8e7b8..a4bef22 100755 --- a/lib/RHRD/utils.pm +++ b/lib/RHRD/utils.pm @@ -292,7 +292,7 @@ sub pv_execute_action my $err_out = join('', <$error>); my $read_out = join('', <$reader>); if ( $? >> 8 ) { - my $log = "\n\nPV: adding note returned non-zero value\n"; + my $log = "\n\nPV: executing action returned non-zero value\n"; $log .= "STDERR:\n" . $err_out . "\n" unless $err_out eq ''; $log .= "STDOUT:\n" . $read_out . "\n" unless $read_out eq ''; return(1, $log); |