Skip to content

Commit 4a7e895

Browse files
committed
Fix verifier
1 parent 1753af7 commit 4a7e895

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

remote_control/verify.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ def verify() -> GitAutograderOutput:
3636

3737
print(f"Create a repo called gitmastery-{username}-remote-control")
3838
url = input("Enter the url of your remote repository: ")
39-
if not url.startswith(f"https://github.com/gitmastery-{username}-remote-control"):
39+
if not url.startswith(
40+
f"https://github.com/{username}/gitmastery-{username}-remote-control"
41+
):
4042
return GitAutograderOutput(
4143
status=GitAutograderStatus.UNSUCCESSFUL,
4244
started_at=started_at,

0 commit comments

Comments
 (0)