Changeset f7b7a35
- Timestamp:
- Mar 23, 2017, 6:07: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:
- 255fe0a
- Parents:
- bef7726
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
this_version.py
rbef7726 rf7b7a35 107 107 gitcmd.append('HEAD') 108 108 try: 109 outCmd= subprocess.check_output(gitcmd).strip().decode('utf8')109 gitsha = subprocess.check_output(gitcmd).strip().decode('utf8') 110 110 except Exception as e: 111 111 print('git command error :%s' % e) 112 112 return None 113 return outCmd 113 114 # check if we have a clean tree 115 gitcmd = ['git', '-C', aubio_dir, 'diff-index', '--quiet'] 116 gitcmd.append('HEAD') 117 try: 118 subprocess.check_output(gitcmd).strip().decode('utf8') 119 except Exception as e: 120 gitsha += '+mods' 121 return gitsha
Note: See TracChangeset
for help on using the changeset viewer.