Second part

main
Bob Mottram 2020-02-24 18:40:23 +00:00
parent b3ca4af05e
commit 5411344622
1 changed files with 3 additions and 1 deletions

View File

@ -870,7 +870,9 @@ class PubServer(BaseHTTPRequestHandler):
def _pathContainsBlogLink(self,baseDir: str,httpPrefix: str,domain: str,path: str) -> (str,str):
"""If the path contains a blog entry then return its filename
"""
userEnding=path.split('/users/',1)
if '/users/' not in path:
return None,None
userEnding=path.split('/users/',1)[1]
print('Test1 '+path+' '+str(userEnding))
if '/' not in userEnding:
return None,None