mirror of https://gitlab.com/bashrc2/epicyon
Typo
parent
0284607e02
commit
1e3a15390e
|
@ -8055,20 +8055,16 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
# hide follows checkbox
|
# hide follows checkbox
|
||||||
hide_follows_filename = \
|
hide_follows_filename = \
|
||||||
acct_dir(base_dir, nickname, domain) + \
|
acct_dir(base_dir, nickname, domain) + \
|
||||||
'/.bideFollows'
|
'/.hideFollows'
|
||||||
hide_follows = False
|
hide_follows = False
|
||||||
print('hide follows 1 ' + str(fields))
|
|
||||||
if fields.get('hideFollows'):
|
if fields.get('hideFollows'):
|
||||||
if fields['hideFollows'] == 'on':
|
if fields['hideFollows'] == 'on':
|
||||||
hide_follows = True
|
hide_follows = True
|
||||||
self.server.hide_follows[nickname] = True
|
self.server.hide_follows[nickname] = True
|
||||||
print('hide follows 2')
|
|
||||||
try:
|
try:
|
||||||
with open(hide_follows_filename, 'w+',
|
with open(hide_follows_filename, 'w+',
|
||||||
encoding='utf-8') as rfile:
|
encoding='utf-8') as rfile:
|
||||||
rfile.write('\n')
|
rfile.write('\n')
|
||||||
print('hide follows 3 ' +
|
|
||||||
hide_follows_filename)
|
|
||||||
except OSError:
|
except OSError:
|
||||||
print('EX: unable to write hideFollows ' +
|
print('EX: unable to write hideFollows ' +
|
||||||
hide_follows_filename)
|
hide_follows_filename)
|
||||||
|
|
Loading…
Reference in New Issue