summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2007-05-11 19:03:33 +0000
committerivan <ivan>2007-05-11 19:03:33 +0000
commit61f09c650da6381ae366ce3cff47721593771e7d (patch)
tree0e46db14bf1c91e8bb41a06e45efb0966ba33c2e
parentfb9235120b7cd46e18263f9797870d07a90552cd (diff)
logout seems not to return an error status, so don't up the queue with "failed: Can't logout of CGPro: No error"
-rw-r--r--FS/FS/part_export/communigate_pro.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/communigate_pro.pm b/FS/FS/part_export/communigate_pro.pm
index 6da201799..ecb378090 100644
--- a/FS/FS/part_export/communigate_pro.pm
+++ b/FS/FS/part_export/communigate_pro.pm
@@ -170,7 +170,7 @@ sub communigate_pro_command { #subroutine, not method
$cli->$method(@args) or die "CGPro error: ". $cli->getErrMessage;
- $cli->Logout or die "Can't logout of CGPro: $CGP::ERR_STRING\n";
+ $cli->Logout; # or die "Can't logout of CGPro: $CGP::ERR_STRING\n";
}