Procházet zdrojové kódy

Remove the rule, not the user.

tags/v0.1^2
Ben Kurtovic před 12 roky
rodič
revize
1a732c62a1
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      earwigbot/config/permissions.py

+ 1
- 1
earwigbot/config/permissions.py Zobrazit soubor

@@ -89,7 +89,7 @@ class PermissionsDB(object):
with sqlite.connect(self._dbfile) as conn:
args = (user.nick, user.ident, user.host, rank)
conn.execute(query, args)
self._data[rank].remove(user)
self._data[rank].remove(rule)
return rule
except KeyError:
pass


Načítá se…
Zrušit
Uložit