main
Bob Mottram 2020-02-24 18:38:25 +00:00
parent 22487db89f
commit b3ca4af05e
1 changed files with 2 additions and 2 deletions

View File

@ -870,11 +870,11 @@ 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/')
userEnding=path.split('/users/',1)
print('Test1 '+path+' '+str(userEnding))
if '/' not in userEnding:
return None,None
userEnding=userEnging.split('/')
userEnding=userEnding.split('/')
print('Test2 '+str(userEnding))
if len(userEnding)!=2:
return None,None