Bug 8015: Add unit tests for SimpleMARC and MarcModificationTemplates routines
[koha.git] / C4 / Koha.pm
index bb3efc7..fe288d0 100644 (file)
@@ -1498,7 +1498,7 @@ sub _isbn_cleanup {
 sub Log {
   my ($data) = @_;
   warn $data;
-  open my $fh, '>>/tmp/koha.log';
+  open my $fh, '>>', '/tmp/koha.log';
   print $fh "$data\n";
   close $fh;
 }