Merge pull request #38 from denizdogan/master

Fix: didn't remove all content
pull/42/head
David "Naypam" Trail 9 years ago
commit fb35c7b8ac

@ -185,9 +185,10 @@ def remove_things(things):
print('Editing and deleting {msg}'.format(msg=msg)) print('Editing and deleting {msg}'.format(msg=msg))
thing.edit(replacement_text) thing.edit(replacement_text)
removal_count += 1 # rename? this includes edits as well as deletions
if not edit_only: if not edit_only:
thing.delete() thing.delete()
removal_count == 1 removal_count += 1
return removal_count return removal_count
things = get_things() things = get_things()

Loading…
Cancel
Save