Skip to content

Commit

Permalink
argparsers: add slash on paths (#1710)
Browse files Browse the repository at this point in the history
  • Loading branch information
lasers authored and ultrabug committed Feb 10, 2019
1 parent 37c49c7 commit 1545233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py3status/argparsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def _format_action_invocation(self, action):
for path in options.include_paths:
path = os.path.abspath(path)
if os.path.isdir(path) and os.listdir(path):
include_paths.append(path)
include_paths.append(path + "/")
options.include_paths = include_paths

# handle py3status list and docstring options
Expand Down

0 comments on commit 1545233

Please sign in to comment.