From 2dfb816ddadb34e5b11676ef18c3c2f9079c8146 Mon Sep 17 00:00:00 2001 From: lassulus Date: Tue, 18 Sep 2018 19:01:36 +0200 Subject: throw away dead code --- titlebot/commands/undo | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 titlebot/commands/undo (limited to 'titlebot/commands/undo') diff --git a/titlebot/commands/undo b/titlebot/commands/undo deleted file mode 100755 index e1b0aba..0000000 --- a/titlebot/commands/undo +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env python3 -import json -from os import environ -import sys -import os -# krebs polling -import poll - -f = 'suggestions.json' -db = poll.load_db(f) -votes = [] -try: - votes = sys.argv[1:] -except: - print("""usage: undo number (...) - undos vote of one or more entries based on .list""") - sys.exit(1) -voter = environ['_prefix'].split("@")[1] -voter_name = environ['_from'] -for vote in votes: - try: - vote = int(vote) - if not voter in db[vote]['votes']: - print("%s, you never voted for '%s'!"%(voter_name,db[vote]['title'])) - else: - del(db[vote]['votes'][voter] ) - print("%s undid vote for '%s'" %(voter_name,db[vote]['title'] )) - except: - print("%s undo voting for #%d failed" %(voter_name,vote)) - -poll.save_db(f,db) -- cgit v1.2.3