String method conversion.

This commit is contained in:
Eric S. Raymond 2001-02-09 04:52:11 +00:00
parent 5ed1dac4c0
commit 20e4423ade
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ class Cmd:
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 @@ class Cmd:
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: