We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c58228 commit 53ed970Copy full SHA for 53ed970
mlc/action.py
@@ -106,8 +106,7 @@ def is_curdir_inside_path(base_path):
106
# Iterate through the list of repository paths
107
for repo_path in repo_paths:
108
if not os.path.exists(repo_path):
109
- logger.warning(f"""Warning: {repo_path} not found. Considering it as a corrupt entry and deleting automatically...""")
110
- logger.warning(f"Deleting the {meta_yaml_path} entry from repos.json")
+ logger.warning(f"""Warning: {repo_path} not found. Considering it as a corrupt entry and deleting from repos.json...""")
111
from .repo_action import rm_repo
112
res = rm_repo(repo_path, os.path.join(self.repos_path, 'repos.json'), True)
113
0 commit comments