Skip to content

Commit

Permalink
Merge pull request #207 from olcf/205-interpreter-mode-crashes-out-on…
Browse files Browse the repository at this point in the history
…-empty-line

Fix for #205
  • Loading branch information
carljbai authored Aug 14, 2023
2 parents 70081f8 + 989d617 commit d0a5086
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libpkpass/commands/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ def postcmd(self, stop, line):
####################################################################
if str(line) == "edit" or "--no-cache" in line:
self._reload_config()
elif str(line) == "":
pass
elif str(line.split()[0]) in [
"create",
"delete",
Expand Down

0 comments on commit d0a5086

Please sign in to comment.