summaryrefslogtreecommitdiff
path: root/cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2.py')
-rwxr-xr-xcmd2.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/cmd2.py b/cmd2.py
index 7ce6e5c0..28e22c45 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -1582,11 +1582,6 @@ class Cmd(cmd.Cmd):
i += 1
command, arg = line[:i], line[i:].strip()
- # Make sure there is a space between the command and args
- # This can occur when a character not in self.identchars bumps against the command (ex: help@)
- if len(command) > 0 and len(arg) > 0 and line[len(command)] != ' ':
- line = line.replace(command, command + ' ', 1)
-
return command, arg, line
def onecmd_plus_hooks(self, line):