We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54fccaf commit 64a0567Copy full SHA for 64a0567
1 file changed
getnetguids.py
@@ -9,8 +9,8 @@
9
def format_guid_from_hex(hex_string):
10
first = hex_string[6:8] + hex_string[4:6] + hex_string[2:4] + hex_string[:2]
11
second = hex_string[10:12] + hex_string[8:10]
12
- return "{0}-{1}-{2}-{3}-{4}".format(first, second, hex_string[12:16], hex_string[16:20],
13
- hex_string[20:])
+ third = hex_string[14:16] + hex_string[12:14]
+ return "{0}-{1}-{2}-{3}-{4}".format(first, second, third, hex_string[16:20], hex_string[20:])
14
15
16
def read_blob(blob):
0 commit comments