Mesa (master): bin: whitespace cleanup

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Aug 16 11:31:15 UTC 2018


Module: Mesa
Branch: master
Commit: c2e00f9eeea0185f87ad3076dfd35475d868da21
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c2e00f9eeea0185f87ad3076dfd35475d868da21

Author: Eric Engestrom <eric.engestrom at intel.com>
Date:   Tue Aug 14 18:05:55 2018 +0100

bin: whitespace cleanup

Signed-off-by: Eric Engestrom <eric.engestrom at intel.com>
Reviewed-by: Dylan Baker <dylan at pnwbakers.com>

---

 bin/git_sha1_gen.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/git_sha1_gen.py b/bin/git_sha1_gen.py
index 68a87e72ec..0ce839c98b 100755
--- a/bin/git_sha1_gen.py
+++ b/bin/git_sha1_gen.py
@@ -30,14 +30,14 @@ def get_git_sha1():
 
 parser = argparse.ArgumentParser()
 parser.add_argument('--output', help='File to write the #define in',
-        required=True)
+                    required=True)
 args = parser.parse_args()
 
 git_sha1 = os.environ.get('MESA_GIT_SHA1_OVERRIDE', get_git_sha1())[:10]
 if git_sha1:
     git_sha1_h_in_path = os.path.join(os.path.dirname(sys.argv[0]),
-            '..', 'src', 'git_sha1.h.in')
-    with open(git_sha1_h_in_path , 'r') as git_sha1_h_in:
+                                      '..', 'src', 'git_sha1.h.in')
+    with open(git_sha1_h_in_path, 'r') as git_sha1_h_in:
         new_sha1 = git_sha1_h_in.read().replace('@VCS_TAG@', git_sha1)
         if os.path.isfile(args.output):
             with open(args.output, 'r') as git_sha1_h:




More information about the mesa-commit mailing list