summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-03-13 22:22:31 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2019-03-13 22:22:31 -0400
commit23fad46d5187600d52b95125bb1629e491cb9e6f (patch)
tree6cf0d88b4d7f36eb588dc406b4a33520dda391bd
parentfdc24bf275a902c7927d8c6633a30540d8d95cca (diff)
downloadcmd2-git-23fad46d5187600d52b95125bb1629e491cb9e6f.tar.gz
Fixed accidental paste typo
-rw-r--r--cmd2/cmd2.py2
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)