diff options
author | Maximilian Hils <git@maximilianhils.com> | 2018-01-04 16:00:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 16:00:50 +0100 |
commit | 00b80b33a1608624e69b33898f032b94876d317e (patch) | |
tree | f7ea8f78a7ed56682aae6f487ceabbc8e70aec8c /mitmproxy | |
parent | d9ce4659fd38362bf548690cdfd4f570a3e8e499 (diff) | |
parent | d38b5e85522af4c0f7184fdef40d5d1b603385da (diff) | |
download | mitmproxy-00b80b33a1608624e69b33898f032b94876d317e.tar.gz mitmproxy-00b80b33a1608624e69b33898f032b94876d317e.tar.bz2 mitmproxy-00b80b33a1608624e69b33898f032b94876d317e.zip |
Merge pull request #2756 from mitmproxy/pyinstaller
Update pysftp, fix wheel testing.
Diffstat (limited to 'mitmproxy')
-rw-r--r-- | mitmproxy/version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/version.py b/mitmproxy/version.py index 3073c3d3..44ec32d4 100644 --- a/mitmproxy/version.py +++ b/mitmproxy/version.py @@ -48,7 +48,7 @@ def get_version(dev: bool = False, build: bool = False, refresh: bool = False) - # Add suffix for non-tagged releases if tag_dist > 0: - mitmproxy_version += ".dev{tag_dist:04}".format(tag_dist=tag_dist) + mitmproxy_version += ".dev{tag_dist}".format(tag_dist=tag_dist) # The wheel build tag (we use the commit) must start with a digit, so we include "0x" mitmproxy_version += "-0x{commit}".format(commit=commit) |