Skip ab/6749736 in stage.

Merged-In: I8dd8d66f16dfc10b981532f1e7052893d7185957
Change-Id: Ic7b98bddaec228ef44182c091c7ec7a8cbe696fd
diff --git a/gitlint/git.py b/gitlint/git.py
index e55aa06..7a03705 100644
--- a/gitlint/git.py
+++ b/gitlint/git.py
@@ -126,7 +126,7 @@
 
     # Split as bytes, as the output may have some non unicode characters.
     blame_lines = subprocess.check_output(
-        ['git', 'blame', (commit + '^!'), '--porcelain', '--', filename]).split(
+        ['git', 'blame', (commit + b'^!'), '--porcelain', '--', filename]).split(
             os.linesep.encode('utf-8'))
     modified_line_numbers = utils.filter_lines(
         blame_lines,