From 732282fa1130a027a51d406ed5132cde9ac636e7 Mon Sep 17 00:00:00 2001
From: Guido van Rossum <guido@python.org>
Date: Wed, 19 Aug 1992 16:49:37 +0000
Subject: Module getattr doesn't exist any more, it's now called newdir.

---
 Lib/cmd.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Lib/cmd.py b/Lib/cmd.py
index ab37a98..e07019f 100644
--- a/Lib/cmd.py
+++ b/Lib/cmd.py
@@ -55,8 +55,8 @@ class Cmd:
 				return
 			func()
 		else:
-			import getattr
-			names = getattr.dir(self)
+			import newdir
+			names = newdir.dir(self)
 			cmds = []
 			for name in names:
 				if name[:3] == 'do_':
-- 
cgit v0.12