Reverse logic

merge-requests/6/head
Bob Mottram 2020-02-25 13:47:04 +00:00
parent 773b695068
commit 361b919ee9
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ def noOfBlogAccounts(baseDir: str) -> int:
for acct in dirs:
if '@' not in acct:
continue
if 'inbox@' not in acct:
if 'inbox@' in acct:
continue
accountDir=os.path.join(baseDir+'/accounts', acct)
blogsIndex=accountDir+'/tlblogs.index'