Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix(remote-server): fix incorrect variable name (#6915)
Browse files Browse the repository at this point in the history
change exception variable name in output of fail clapi import process
  • Loading branch information
victorvassilev authored Oct 30, 2018
1 parent 528e38a commit ceefdfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function import()
echo "Success\n";
} catch (\Exception $ex) {
echo "Fail:\n";
echo $e->__toString()."\n";
echo $ex->__toString()."\n";
}

echo "\n Centreon Remote import finished.\n";
Expand Down

0 comments on commit ceefdfc

Please sign in to comment.