See the function csv_report in open-audit/code_igniter/application/core/MY_Controller.php. There are two license thus:
$output_csv .= '"'.trim($attribute).'",';
Change these two lines to the below:
$output_csv .= '"'.trim($attribute).'";';
That should do the trick
I'd like to change the export csv separator from , to ;