There was an error while loading. Please reload this page.
1 parent 2318e21 commit 91093bdCopy full SHA for 91093bd
1 file changed
vscode_projects/__init__.py
@@ -42,6 +42,9 @@ def get_vscode_project(storage_json):
42
title = os.path.basename(uri)
43
if uri.startswith("vscode-remote://"):
44
title = "remote: {}".format(title)
45
+ else:
46
+ if not os.path.isdir(title):
47
+ continue
48
result.append({
49
'title': title,
50
'paths': [uri],
@@ -90,4 +93,4 @@ def main():
90
93
91
94
92
95
if __name__ == "__main__":
- main()
96
+ main()
0 commit comments