diff options
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/m5/params.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/params.py b/src/python/m5/params.py index 1e8c24584..981bb0d37 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -697,7 +697,7 @@ class EthernetAddr(ParamValue): raise TypeError, 'invalid ethernet address %s' % value for byte in bytes: - if not 0 <= int(byte) <= 0xff: + if not 0 <= int(byte, base=16) <= 0xff: raise TypeError, 'invalid ethernet address %s' % value self.value = value |