From 2aa13bab46406db273c5bd7f66886774113032d0 Mon Sep 17 00:00:00 2001 From: kenna-bmcdevitt Date: Mon, 26 Aug 2024 13:49:04 -0500 Subject: [PATCH] print html url instead of the name of repo + user --- github_searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_searcher.py b/github_searcher.py index 7fbdd4e..4b55b2c 100644 --- a/github_searcher.py +++ b/github_searcher.py @@ -46,7 +46,7 @@ def main(): if args.search_type == "users": print(item.login) else: - print(item.full_name) + print(item.html_url) if __name__ == "__main__": main() \ No newline at end of file