summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index 76b07c0f..84945535 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -3594,7 +3594,7 @@ class Cmd(cmd.Cmd):
history = pickle.load(fobj)
except (AttributeError, EOFError, FileNotFoundError, ImportError, IndexError, KeyError, ValueError,
pickle.UnpicklingError):
- # If any non-operating system error occurs when attempting to unpickle, just use an empty history
+ # If any of these errors occur when attempting to unpickle, just use an empty history
pass
except OSError as ex:
msg = "Can not read persistent history file '{}': {}"