summaryrefslogtreecommitdiff
path: root/aplus.go
diff options
context:
space:
mode:
authorvin <git@vineetk.net>2023-11-20 10:06:35 -0500
committervin <git@vineetk.net>2023-11-20 10:27:50 -0500
commit138121330e97cf6a31a4abd91b8bec206d7d7f80 (patch)
tree0032911ae231e1cd3782cc61417a2d584ee1e015 /aplus.go
parent23226c46a16bd1037016c1578b608eb6d23f7546 (diff)
use golang flag instead of external getopt library
Diffstat (limited to 'aplus.go')
-rw-r--r--aplus.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/aplus.go b/aplus.go
index 51a5a10..6d308c4 100644
--- a/aplus.go
+++ b/aplus.go
@@ -63,7 +63,7 @@ func submit_code(course_code int, attendance_code string) {
63func launch_aplus(course_code int) string { 63func launch_aplus(course_code int) string {
64 err := init_aplus_toolid(course_code) 64 err := init_aplus_toolid(course_code)
65 if err != nil { 65 if err != nil {
66 fmt.Println("Failed to get A+ base URL and tool ID") 66 fmt.Println("Failed to get A+ base URL and tool ID. Try again with a different course code.")
67 os.Exit(1) 67 os.Exit(1)
68 } 68 }
69 69