Add new follows to the calendar by default

main
Bob Mottram 2020-07-03 22:33:51 +01:00
parent ce503c3d37
commit aec28278cf
1 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import errno
from urllib.request import urlopen from urllib.request import urlopen
from pprint import pprint from pprint import pprint
from calendar import monthrange from calendar import monthrange
from followingCalendar import addPersonToCalendar
def getProtocolPrefixes() -> []: def getProtocolPrefixes() -> []:
@ -339,6 +340,12 @@ def followPerson(baseDir: str, nickname: str, domain: str,
except Exception as e: except Exception as e:
print('WARN: Failed to write entry to follow file ' + print('WARN: Failed to write entry to follow file ' +
filename + ' ' + str(e)) filename + ' ' + str(e))
if followFile == 'following.txt':
# if following a person add them to the list of
# calendar follows
addPersonToCalendar(baseDir, nickname, domain,
followNickname, followDomain)
if debug: if debug:
print('DEBUG: creating new following file to follow ' + handleToFollow) print('DEBUG: creating new following file to follow ' + handleToFollow)
with open(filename, "w") as followfile: with open(filename, "w") as followfile: