diff options
author | Nicolas Vollmar <nvollmar@gmail.com> | 2024-06-09 00:08:10 +0200 |
---|---|---|
committer | Nicolas Vollmar <nvollmar@gmail.com> | 2024-06-09 00:08:10 +0200 |
commit | 253bf34371173e3cdd4871c18148ed75c3fa0832 (patch) | |
tree | d0930a924124beee0be270582bd05c5433424b9f /src | |
parent | 07efcfc28cc2ba1420a470f9bb9cf3be68d8ff47 (diff) | |
download | vyos-1x-253bf34371173e3cdd4871c18148ed75c3fa0832.tar.gz vyos-1x-253bf34371173e3cdd4871c18148ed75c3fa0832.zip |
T6460: fixes duid formatting
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/dhcp.py | 3 |
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: |