change a few instances of lbry.io to lbry.com. fixes

This commit is contained in:
Alex Grintsvayg 2019-06-04 10:23:04 -04:00
parent 7063138e3c
commit bae2939943
No known key found for this signature in database
GPG key ID: AEB3F089F86A22B5
11 changed files with 17 additions and 17 deletions

View file

@ -47,7 +47,7 @@ async def main(blob_hash: str, url: str):
if __name__ == "__main__": # usage: python download_blob_from_peer.py <blob_hash> [host url:port]
url = 'reflector.lbry.io:5567'
url = 'reflector.lbry.com:5567'
if len(sys.argv) > 2:
url = sys.argv[2]
asyncio.run(main(sys.argv[1], url))