summaryrefslogtreecommitdiff
path: root/lib/RHRD/utils.pm
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2017-01-11 15:51:39 (GMT)
committerChristian Pointner <equinox@helsinki.at>2017-01-11 15:57:11 (GMT)
commitf986b2d95200eed6f87b2171165e268fc27fad7c (patch)
tree479f7a2c5c4f33e061cc58c6b24d52267d7cda0f /lib/RHRD/utils.pm
parent6f1430c4bc4216d6c074656a8ac907bd653e9c91 (diff)
add show group sanity check
Diffstat (limited to 'lib/RHRD/utils.pm')
-rwxr-xr-xlib/RHRD/utils.pm2
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);