aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/updateController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-05-26 19:54:47 +0200
committerGravatar GitHub <noreply@github.com> 2021-05-26 19:54:47 +0200
commit319d7dc1856a7a724291107a6df7f85ee3e31809 (patch)
tree96b3db039520ff21ac4332977aae127590fdb5f6 /app/Controllers/updateController.php
parentc3074d67243b4715fe44f4ed05f9628483c9181f (diff)
Minor whitespace (#3639)
Spotted in https://github.com/FreshRSS/FreshRSS/issues/3638
Diffstat (limited to 'app/Controllers/updateController.php')
-rw-r--r--app/Controllers/updateController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controllers/updateController.php b/app/Controllers/updateController.php
index 2b43bc2aa..8ed2380c5 100644
--- a/app/Controllers/updateController.php
+++ b/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();
}