diff options
author | marmeladema <xademax@gmail.com> | 2019-10-20 20:15:43 +0100 |
---|---|---|
committer | marmeladema <xademax@gmail.com> | 2019-10-22 10:15:59 +0100 |
commit | af7e4d633a382abe45e82fcb0ebae30727c4e462 (patch) | |
tree | 8fec8ea532c09dd1ff7ad0a59df8e7097f31c140 /python/servo | |
parent | 7e9ce2dbd5c660b3832614573737923bb8929551 (diff) | |
download | servo-af7e4d633a382abe45e82fcb0ebae30727c4e462.tar.gz servo-af7e4d633a382abe45e82fcb0ebae30727c4e462.zip |
Convert git sha hash to text to be compatible with Python3
This also pin the six module version to 1.12 in order to be sure
six.ensure_text is available.
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 4a216c690af..ffbcc999469 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -767,7 +767,7 @@ install them, let us know by filing a bug!") ]).strip()) git_info.append('') - git_info.append(git_sha) + git_info.append(six.ensure_str(git_sha)) if git_is_dirty: git_info.append('dirty') |