summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNicolas Vollmar <nvollmar@gmail.com>2024-06-09 00:08:10 +0200
committerNicolas Vollmar <nvollmar@gmail.com>2024-06-09 00:08:10 +0200
commit253bf34371173e3cdd4871c18148ed75c3fa0832 (patch)
treed0930a924124beee0be270582bd05c5433424b9f /src
parent07efcfc28cc2ba1420a470f9bb9cf3be68d8ff47 (diff)
downloadvyos-1x-253bf34371173e3cdd4871c18148ed75c3fa0832.tar.gz
vyos-1x-253bf34371173e3cdd4871c18148ed75c3fa0832.zip
T6460: fixes duid formatting
Diffstat (limited to 'src')
-rwxr-xr-xsrc/op_mode/dhcp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/op_mode/dhcp.py b/src/op_mode/dhcp.py
index 54d492cda..3229da4ad 100755
--- a/src/op_mode/dhcp.py
+++ b/src/op_mode/dhcp.py
@@ -47,7 +47,8 @@ def _utc_to_local(utc_dt):
return datetime.fromtimestamp((datetime.fromtimestamp(utc_dt) - datetime(1970, 1, 1)).total_seconds())
-def _format_hex_string(in_str):
+def _format_hex_string(in_bytes):
+ in_str = bytes(in_bytes).hex()
out_str = ""
# if input is divisible by 2, add : every 2 chars
if len(in_str) > 0 and len(in_str) % 2 == 0: