Skip to content

Commit

Permalink
Clarify error message in logfile
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteMagic committed Dec 22, 2018
1 parent 90c51dc commit c654e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action_plugins/macro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def get_entry(self, index):
"""
if not 0 <= index < len(self._data):
logging.getLogger("system").error(
"Attempted to retrieve entry at invalid index"
"Attempted to retrieve macro entry at invalid index"
)
return None
return self._data[index]
Expand Down

0 comments on commit c654e44

Please sign in to comment.