Changeset c203601
- Timestamp:
- Mar 23, 2017, 7:45:41 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler
- Children:
- 9189c42
- Parents:
- f5bb097
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
this_version.py
rf5bb097 rc203601 88 88 gitcmd.append('HEAD') 89 89 try: 90 subprocess.check_output(gitcmd).strip().decode('utf8') 91 except Exception as e: 90 output = subprocess.check_output(gitcmd) 91 except subprocess.CalledProcessError: 92 try: 93 import sys 94 sys.stdout.write('Info: current git tree is not clean\n') 95 gitstatus = subprocess.check_output(['git', 'status']) 96 sys.stdout.write(gitstatus.decode('utf8')) 97 except Exception: 98 pass 92 99 gitsha += '+mods' 93 100 return gitsha
Note: See TracChangeset
for help on using the changeset viewer.