diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-04-06 18:00:44 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-04-06 18:00:44 -0400 |
commit | 9fead747f5641021efc2bc240e62583607e8f06f (patch) | |
tree | 35cd20efe2232091899338574b5fd74acb760998 | |
parent | f3544a13f3559e1e51b1f039e6613d5c47e41fa8 (diff) | |
download | gem5-9fead747f5641021efc2bc240e62583607e8f06f.tar.xz |
fix typo in python config stuff
python/m5/config.py:
fix typo
--HG--
extra : convert_revision : 2208453d93149ba4af140dd78c29be4c4943b397
-rw-r--r-- | python/m5/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/config.py b/python/m5/config.py index 30ce340f6..e260c57a7 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -1285,7 +1285,7 @@ class NullSimObject(object): pass def _convert(cls, value): - if value == Nxone: + if value == None: return if isinstance(value, cls): |