From 787e44fdc052f858679175850515259433e48ed5 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Tue, 18 Apr 2006 23:58:04 +0000 Subject: fix typo. --- numpy/lib/UserArray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/UserArray.py') 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) ############################################################# -- cgit v1.2.1