diff options
| author | Kenix3 <kenixwhisperwind@gmail.com> | 2021-03-09 18:11:46 -0500 |
|---|---|---|
| committer | Kenix3 <kenixwhisperwind@gmail.com> | 2021-03-10 22:28:06 -0500 |
| commit | 1f7ad229c52730b7eea7ae223605d48c7ea4d22f (patch) | |
| tree | 142a630c38eb5143c944dc320e6a046636d9f199 | |
| parent | 375f99f2b43523efe69019c3db8bed15bb475984 (diff) | |
Updates progress.py to use the git module for outputting commit hash
| -rw-r--r-- | requirements.txt | 1 | ||||
| -rwxr-xr-x | tools/progress.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index afe54bcbb..d76027c1c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,3 +4,4 @@ colorama>=0.4.3 ansiwrap>=0.8.4 attrs>=18.2.0 watchdog>=0.10.2 +GitPython>=3.1.14 diff --git a/tools/progress.py b/tools/progress.py index 8c78886d5..b671a87e9 100755 --- a/tools/progress.py +++ b/tools/progress.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -import os, struct, sys, ast, argparse, json, re, csv +import os, argparse, json, re, csv, git parser = argparse.ArgumentParser() |
