aboutsummaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorShadab Zafar <dufferzafar0@gmail.com>2016-07-10 15:50:13 +0530
committerShadab Zafar <dufferzafar0@gmail.com>2016-07-10 15:50:13 +0530
commit8135b356d665245e7b45de53c36f79c8d6a42565 (patch)
treeb540ab5c81b0622e09aab24e03804414c461fcc4 /release
parentdc6266e08e58a2ec7a6660e125ddc585916f4dcd (diff)
downloadmitmproxy-8135b356d665245e7b45de53c36f79c8d6a42565.tar.gz
mitmproxy-8135b356d665245e7b45de53c36f79c8d6a42565.tar.bz2
mitmproxy-8135b356d665245e7b45de53c36f79c8d6a42565.zip
Decode commit value in rtool
Diffstat (limited to 'release')
-rwxr-xr-xrelease/rtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/rtool.py b/release/rtool.py
index 04e1249d..4e43eaef 100755
--- a/release/rtool.py
+++ b/release/rtool.py
@@ -76,7 +76,7 @@ def get_snapshot_version():
return "{version}dev{tag_dist:04}-0x{commit}".format(
version=get_version(), # this should already be the next version
tag_dist=tag_dist,
- commit=commit
+ commit=commit.decode()
)