diff options
| author | khazhyk <[email protected]> | 2017-11-18 23:56:01 -0800 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-11-21 17:54:55 -0500 |
| commit | 54ea52c86fee52a4b8f1f13b15438a082610d636 (patch) | |
| tree | d6b49ba17d4060f18f1d7f0e1636ded683e19423 /setup.py | |
| parent | Fix self._process not existing during cleanup() in case of error (diff) | |
| download | discord.py-54ea52c86fee52a4b8f1f13b15438a082610d636.tar.xz discord.py-54ea52c86fee52a4b8f1f13b15438a082610d636.zip | |
Prefix sha to fix leading zeros being stripped
/dist.py:352: UserWarning: Normalizing '1.0.0a1402+0965847' to '1.0.0a1402+965847'
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ if version.endswith(('a', 'b', 'rc')): stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = p.communicate() if out: - version += '+' + out.decode('utf-8').strip() + version += '+g' + out.decode('utf-8').strip() except Exception: pass |