瀏覽代碼

Minor whitespace (#3639)

Spotted in https://github.com/FreshRSS/FreshRSS/issues/3638
Alexandre Alapetite 4 年之前
父節點
當前提交
319d7dc185
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      app/Controllers/updateController.php

+ 3 - 3
app/Controllers/updateController.php

@@ -52,10 +52,10 @@ class FreshRSS_update_Controller extends Minz_ActionController {
 				exec('git status -sb --porcelain remote', $output, $return);
 			} else {
 				$line = is_array($output) ? implode('; ', $output) : $output;
-				Minz_Log::warning('git fetch warning:' . $line);
+				Minz_Log::warning('git fetch warning: ' . $line);
 			}
 		} catch (Exception $e) {
-			Minz_Log::warning('git fetch error:' . $e->getMessage());
+			Minz_Log::warning('git fetch error: ' . $e->getMessage());
 		}
 		chdir($cwd);
 		$line = is_array($output) ? implode('; ', $output) : $output;
@@ -77,7 +77,7 @@ class FreshRSS_update_Controller extends Minz_ActionController {
 
 			self::migrateToGitEdge();
 		} catch (Exception $e) {
-			Minz_Log::warning('Git error:' . $e->getMessage());
+			Minz_Log::warning('Git error: ' . $e->getMessage());
 			if ($output == '') {
 				$output = $e->getMessage();
 			}