my eye

Remove all whitespace stripping from calls to git

Committed 03f058

--- a/gmpg/git.py
+++ b/gmpg/git.py

         except AttributeError:
             pass
         return [
-            line.rstrip().decode("utf-8")
+            line.decode("utf-8")
             for line in subprocess.check_output(
                 ["git", "-C", str(self.location)] + list(command_args), **option_args
             ).splitlines()