We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1753af7 commit 4a7e895Copy full SHA for 4a7e895
remote_control/verify.py
@@ -36,7 +36,9 @@ def verify() -> GitAutograderOutput:
36
37
print(f"Create a repo called gitmastery-{username}-remote-control")
38
url = input("Enter the url of your remote repository: ")
39
- if not url.startswith(f"https://github.com/gitmastery-{username}-remote-control"):
+ if not url.startswith(
40
+ f"https://github.com/{username}/gitmastery-{username}-remote-control"
41
+ ):
42
return GitAutograderOutput(
43
status=GitAutograderStatus.UNSUCCESSFUL,
44
started_at=started_at,
0 commit comments