diff --git a/.github/python_matcher.json b/.github/python_matcher.json
index d66fea82c0f28caa0fe7dae760ca73e4833b180b..2778f159fcfd333bc757c99e4fe67f4a2623eaa1 100644
--- a/.github/python_matcher.json
+++ b/.github/python_matcher.json
@@ -4,9 +4,16 @@
             "owner": "yapf-diff",
             "pattern": [
                 {
-                    "regexp": "^(?:---|\\+\\+\\+)\\s*([^\\s]*)\\s*\\((?:original|reformatted)\\)$",
-                    "file": 1,
-                    "message": "This file needs formating."
+                    "regexp": "^---\\s*([^\\s]*)\\s*\\(original\\)$",
+                    "file": 1
+                },
+                {
+                    "regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\(reformatted\\)$",
+                    "message": 2
+                },
+                {
+                    "regexp": "^@@\\s*-(\\d+),(\\d+)\\s*\\+(\\d+),(\\d+)\\s*@@$",
+                    "line": 1
                 }
             ]
         },
diff --git a/deploy.py b/deploy.py
index c4806569e077aa8776f56db98319c1afb29de65c..16276ca3ce7988e72f289167b2171022fcff09ad 100755
--- a/deploy.py
+++ b/deploy.py
@@ -315,8 +315,7 @@ class OpenSKInstaller:
     self.checked_command_output(["make"], cwd=props.path)
 
   def build_example(self):
-    info(
-        "Building example {}".format(self.args.application))
+    info("Building example {}".format(self.args.application))
     self._build_app_or_example(is_example=True)
 
   def build_opensk(self):
@@ -343,7 +342,8 @@ class OpenSKInstaller:
     env["RUSTFLAGS"] = " ".join(rust_flags)
 
     command = [
-        "cargo", "build", "--release", "--target={}".format(props.arch),
+        "cargo",
+        "build", "--release", "--target={}".format(props.arch),
         "--features={}".format(",".join(self.args.features))
     ]
     if is_example: