Remove debug prints
This commit is contained in:
parent
357abba00d
commit
99c16ab4b8
1 changed files with 0 additions and 2 deletions
|
@ -24,7 +24,6 @@ class Module(ModuleManager.BaseModule):
|
|||
|
||||
hostmeta = utils.http.request(HOSTMETA % instance,
|
||||
soup=True, check_content_type=False)
|
||||
print(hostmeta.data)
|
||||
webfinger_url = None
|
||||
for item in hostmeta.data.find_all("link"):
|
||||
if item["rel"] and item["rel"][0] == "lrdd":
|
||||
|
@ -41,7 +40,6 @@ class Module(ModuleManager.BaseModule):
|
|||
headers=WEBFINGER_HEADERS,
|
||||
get_params={"resource": "acct:%s" % full_username},
|
||||
json=True)
|
||||
print(webfinger.data)
|
||||
|
||||
activity_url = None
|
||||
for link in webfinger.data["links"]:
|
||||
|
|
Loading…
Reference in a new issue