Merged rtgigbbons patch 2

yaml
Naypam 9 years ago
commit 3ea6b0f4e6

@ -165,6 +165,11 @@ def remove_things(things):
with open("%s/%s.json" % (save_directory, thing.id), "w") as fh: with open("%s/%s.json" % (save_directory, thing.id), "w") as fh:
json.dump(thing.json_dict, fh) json.dump(thing.json_dict, fh)
if trial_run: # Don't do anything, trial mode!
log.debug("Would have deleted {thing}: '{content}'".format(
thing=thing.id, content=thing))
continue
if clear_vote: if clear_vote:
thing.clear_vote() thing.clear_vote()

Loading…
Cancel
Save