mirror of https://gitlab.com/bashrc2/epicyon
Handle empty handles
parent
ebfe4317aa
commit
523e98f282
|
|
@ -1573,6 +1573,8 @@ def remove_follower(base_dir: str,
|
||||||
new_followers_str = ''
|
new_followers_str = ''
|
||||||
found = False
|
found = False
|
||||||
for handle2 in followers_list:
|
for handle2 in followers_list:
|
||||||
|
if not handle2:
|
||||||
|
continue
|
||||||
if handle2.lower() != handle:
|
if handle2.lower() != handle:
|
||||||
new_followers_str += handle2 + '\n'
|
new_followers_str += handle2 + '\n'
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue