diff options
Diffstat (limited to 'lib/migration/content.php')
-rw-r--r-- | lib/migration/content.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/migration/content.php b/lib/migration/content.php index d640bea4b9f..400a46a4340 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -236,7 +236,9 @@ class OC_Migration_Content{ */ public function finish() { if( !$this->zip->close() ) { - OC_Log::write( 'migration', 'Failed to write the zip file with error: '.$this->zip->getStatusString(), OC_Log::ERROR ); + OC_Log::write( 'migration', + 'Failed to write the zip file with error: '.$this->zip->getStatusString(), + OC_Log::ERROR ); return false; } $this->cleanup(); |