mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-19 06:43:06 +02:00
store: Remove unused variable
This commit is contained in:
parent
e3f253ed36
commit
9d4df3bba2
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class WarriorStore(object):
|
|||
def __getitem__(self, key):
|
||||
try:
|
||||
return self.warriors[key]
|
||||
except KeyError as e:
|
||||
except KeyError:
|
||||
raise errors.TaskWikiException(
|
||||
"Taskwarrior with key '{0}' not available."
|
||||
.format(key))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue