Commit 1603542c authored by Chris Toshok's avatar Chris Toshok

for getattrFunc use getattrInternal instead of getattr

getattr throws an exception if the attribute is not present.  getattrFunc already throws the same exception (if there isn't a default value passed in).
parent 1eb99619
......@@ -427,7 +427,7 @@ Box* getattrFunc(Box* obj, Box* _str, Box* default_value) {
Box* rtn = NULL;
try {
rtn = getattr(obj, str->data());
rtn = getattrInternal(obj, str->data(), NULL);
} catch (ExcInfo e) {
if (!e.matches(AttributeError))
throw e;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment