From 9a7de2d14a016e842468eeb293a51ecbd6596029 Mon Sep 17 00:00:00 2001 From: Viktor Villainov Date: Tue, 4 Sep 2018 11:29:10 -0400 Subject: [PATCH] fix readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 62c3534..b359571 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ import i2plib loop = asyncio.get_event_loop() # making your local web server available in the I2P network -asyncio.ensure_future(i2plib.server_tunnel(("127.0.0.1", 80)) +asyncio.ensure_future(i2plib.server_tunnel(("127.0.0.1", 80))) try: loop.run_forever() @@ -109,7 +109,7 @@ import i2plib loop = asyncio.get_event_loop() # bind irc.echelon.i2p to 127.0.0.1:6669 -asyncio.ensure_future(i2plib.client_tunnel(("127.0.0.1", 6669), "irc.echelon.i2p") +asyncio.ensure_future(i2plib.client_tunnel(("127.0.0.1", 6669), "irc.echelon.i2p")) try: loop.run_forever()