Skip to content

Commit 872d4ab

Browse files
committed
fix(load): Fix vcspull sync --config [tab]
1 parent 0aa4b84 commit 872d4ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vcspull/cli/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_config_file_completions(ctx, args, incomplete):
3939
return [
4040
click.shell_completion.CompletionItem(c)
4141
for c in find_config_files(include_home=True)
42-
if c.startswith(incomplete)
42+
if str(c).startswith(incomplete)
4343
]
4444

4545

0 commit comments

Comments
 (0)