From 20e4423adef209d2260fd952533dc2360e2d257e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 9 Feb 2001 04:52:11 +0000 Subject: [PATCH] String method conversion. --- Lib/cmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/cmd.py b/Lib/cmd.py index 2b20f954eaa..dcf601f4f23 100644 --- a/Lib/cmd.py +++ b/Lib/cmd.py @@ -91,7 +91,7 @@ def postloop(self): pass def onecmd(self, line): - line = string.strip(line) + line = line.strip() if not line: return self.emptyline() elif line[0] == '?': @@ -104,7 +104,7 @@ def onecmd(self, line): self.lastcmd = line i, n = 0, len(line) while i < n and line[i] in self.identchars: i = i+1 - cmd, arg = line[:i], string.strip(line[i:]) + cmd, arg = line[:i], line[i:].strip() if cmd == '': return self.default(line) else: