diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-04-18 23:58:04 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-04-18 23:58:04 +0000 |
commit | 787e44fdc052f858679175850515259433e48ed5 (patch) | |
tree | 2128bf68e923f6fc7deecb4e4bfd75e01c4e2540 /numpy/lib/UserArray.py | |
parent | dbb89ee8932e1f2b9f4a8940d90d6fd96c8c3f8e (diff) | |
download | numpy-787e44fdc052f858679175850515259433e48ed5.tar.gz |
fix typo.
Diffstat (limited to 'numpy/lib/UserArray.py')
-rw-r--r-- | numpy/lib/UserArray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/UserArray.py b/numpy/lib/UserArray.py index 20a8bb585..53845d068 100644 --- a/numpy/lib/UserArray.py +++ b/numpy/lib/UserArray.py @@ -192,7 +192,7 @@ class UserArray(object): # Only called after other approaches fail. def __getattr__(self,attr): if (attr == 'array'): - return object.__getattr__(self, attr) + return object.__getattribute__(self, attr) return self.array.__getattribute__(attr) ############################################################# |