Skip to content

Commit

Permalink
Fixed a typo in detail options.
Browse files Browse the repository at this point in the history
fix error on dotdrop detail <key>.
  • Loading branch information
marczz authored and deadc0de6 committed Dec 27, 2023
1 parent 2c462c3 commit 4965332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotdrop/dotdrop.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def cmd_detail(opts):
dotfiles = opts.dotfiles
if opts.detail_keys:
# filtered dotfiles to install
uniq = uniq_list(opts.details_keys)
uniq = uniq_list(opts.detail_keys)
dotfiles = [d for d in dotfiles if d.key in uniq]
LOG.emph(f'dotfiles details for profile \"{opts.profile}\":\n')
for dotfile in dotfiles:
Expand Down

0 comments on commit 4965332

Please sign in to comment.