diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-03-13 22:22:31 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-03-13 22:22:31 -0400 |
commit | 23fad46d5187600d52b95125bb1629e491cb9e6f (patch) | |
tree | 6cf0d88b4d7f36eb588dc406b4a33520dda391bd | |
parent | fdc24bf275a902c7927d8c6633a30540d8d95cca (diff) | |
download | cmd2-git-23fad46d5187600d52b95125bb1629e491cb9e6f.tar.gz |
Fixed accidental paste typo
-rw-r--r-- | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 08ca1b80..cd8ff110 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -3392,7 +3392,7 @@ class Cmd(cmd.Cmd): command = utils.quote_string_if_needed(os.path.expanduser(self.editor)) if args.file_path: - command += " " + utils.quote_string_if_needed(os.path.expaclass nduser(args.file_path)) + command += " " + utils.quote_string_if_needed(os.path.expanduser(args.file_path)) self.do_shell(command) |