From 3944083effe6ed3bb7593d8530bdbdb79fa5b821 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Sat, 10 Mar 2018 21:28:02 +0000 Subject: [PATCH] docs: Replace google.com as target of get_url() Probably best to avoid angering the 800 lb gorilla with access to killer robots. https://example.org works, this is why it exists. --- mitogen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitogen/__init__.py b/mitogen/__init__.py index 61a06346..91075b80 100644 --- a/mitogen/__init__.py +++ b/mitogen/__init__.py @@ -94,7 +94,7 @@ def main(log_level='INFO'): @mitogen.main() def main(router): z = router.ssh(hostname='k3') - print z.call(get_url, 'https://www.google.com/') + print z.call(get_url, 'https://example.org/') """