Skip to content

Commit 42454d2

Browse files
committed
fix small error
1 parent 9212dcb commit 42454d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agent/run_agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ def run_agent_for_repo(
5757
# get repo info
5858
_, repo_name = example["repo"].split("/")
5959

60+
# before starting, display all information to terminal
6061
original_repo_name = repo_name
62+
update_queue.put(("start_repo", (original_repo_name, 0)))
6163

6264
repo_name = repo_name.lower()
6365
repo_name = repo_name.replace(".", "-")
6466

65-
# before starting, display all information to terminal
66-
update_queue.put(("start_repo", (original_repo_name, 0)))
6767

6868
repo_path = os.path.join(repo_base_dir, repo_name)
6969
repo_path = os.path.abspath(repo_path)

0 commit comments

Comments
 (0)