dwb2023 commited on
Commit
e361a15
·
verified ·
1 Parent(s): 418c4df

Update app.py

Browse files

address the following error: remote: Password authentication in git is no longer supported. You must use a user access token or an SSH key instead. See https://huggingface.co/blog/password-git-deprecation

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,8 +19,8 @@ def validate_url(url):
19
  def clone_repo(url, repo_dir, token):
20
  env = os.environ.copy()
21
  env['GIT_LFS_SKIP_SMUDGE'] = '1'
22
- git_command = ["git", "clone", f"https://{token}:x-oauth-basic@{url[8:]}", repo_dir]
23
- result = subprocess.run(git_command, env=env, capture_output=True, text=True)
24
  if result.returncode != 0:
25
  return False, result.stderr
26
  return True, None
 
19
  def clone_repo(url, repo_dir, token):
20
  env = os.environ.copy()
21
  env['GIT_LFS_SKIP_SMUDGE'] = '1'
22
+ token_url = url.replace('https://', f'https://{token}:x-oauth-basic@')
23
+ result = subprocess.run(["git", "clone", token_url, repo_dir], env=env, capture_output=True, text=True)
24
  if result.returncode != 0:
25
  return False, result.stderr
26
  return True, None