my eye

Leave prefixing whitespace on lines returned from git

Committed c8b93e

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

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