summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.md1
-rwxr-xr-xcmd2.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 76475cbf..403669ae 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -8,6 +8,7 @@ News
* Bug Fixes
* Fixed some timing bugs when running unit tests in parallel by using monkeypatch
+ * Fixed some pyperclip clipboard interaction bugs on Linux
0.7.5
-----
diff --git a/cmd2.py b/cmd2.py
index e5ee62c0..07ccb2a8 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -684,7 +684,7 @@ class Cmd(cmd.Cmd):
def onecmd_plus_hooks(self, line):
"""Top-level function called by cmdloop() to handle parsing a line and running the command and all of its hooks.
- :param line: str - line of text read from inp
+ :param line: str - line of text read from input
:return: bool - True if cmdloop() should exit, False otherwise
"""
stop = 0