Less indentation

merge-requests/30/head
Bob Mottram 2021-01-21 12:42:59 +00:00
parent fe45873ffe
commit 372a9567c8
1 changed files with 56 additions and 54 deletions

View File

@ -8955,7 +8955,10 @@ class PubServer(BaseHTTPRequestHandler):
"""
# look up a person
actorJson = personLookup(domain, path, baseDir)
if actorJson:
if not actorJson:
return False
if atPath:
print('@ detected _showPersonProfile')
if self._requestHTTP():
if not self.server.session:
print('Starting new session during person lookup')
@ -8999,7 +9002,7 @@ class PubServer(BaseHTTPRequestHandler):
else:
if self._fetchAuthenticated():
if atPath:
print('@ deteceted actor ' + str(actorJson))
print('@ detected actor ' + str(actorJson))
msg = json.dumps(actorJson,
ensure_ascii=False).encode('utf-8')
msglen = len(msg)
@ -9010,7 +9013,6 @@ class PubServer(BaseHTTPRequestHandler):
self._404()
self.server.GETbusy = False
return True
return False
def _showBlogPage(self, authorized: bool,
callingDomain: str, path: str,