We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24e8d15 commit a2bee4aCopy full SHA for a2bee4a
conan/tools/b2/util.py
@@ -1,6 +1,6 @@
1
from conans.errors import ConanException
2
from hashlib import md5
3
-from base64 import b32hexencode
+from base64 import b32encode
4
5
__all__ = [
6
'b2_address_model',
@@ -259,4 +259,4 @@ def b2_variation_key(settings, options=None):
259
"""
260
A hashed key of the variation to use a UID for the variation.
261
262
- return b32hexencode(md5(b2_variation_id(settings, options).encode('utf-8')).digest()).decode('utf-8').lower().replace('=', '')
+ return b32encode(md5(b2_variation_id(settings, options).encode('utf-8')).digest()).decode('utf-8').lower().replace('=', '')
0 commit comments