From 3eee7af0e69a39da2dc6c5f109c10975fae5a93e Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 16 Nov 2014 22:10:26 +0100 Subject: [PATCH] Remove Byte Order Mark from git/cmd.py The Unicode Byte Order Mark is usually unwanted. git/cmd.py had one inserted in 2008 by cf37099e, a commit that fix a Windows related issue which indicate the file has most probably be edited with a text editor that automatically insert the Byte Order Mark. Remove the BOM from git/cmd.py For details aboute the BOM: https://en.wikipedia.org/wiki/Byte_order_mark --- git/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/cmd.py b/git/cmd.py index a1780de7e..991b42111 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -1,4 +1,4 @@ -# cmd.py +# cmd.py # Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under