We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aa4b84 commit 872d4abCopy full SHA for 872d4ab
1 file changed
vcspull/cli/sync.py
@@ -39,7 +39,7 @@ def get_config_file_completions(ctx, args, incomplete):
39
return [
40
click.shell_completion.CompletionItem(c)
41
for c in find_config_files(include_home=True)
42
- if c.startswith(incomplete)
+ if str(c).startswith(incomplete)
43
]
44
45
0 commit comments