Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion filetags/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2504,7 +2504,7 @@ def main():

files = extract_filenames_from_argument(options.files)

if platform.system() == 'Windows' and len(files)==1:
if platform.system() == 'Windows' and len(files)==1 and ('*' in files or '%' in files):
# Windows CLI does not resolve wildcard globbing: https://github.com/novoid/filetags/issues/25
# Therefore, filetags has to do the business proper(TM) operating systems usually
# does: converting file globs to lists of files:
Expand Down