summaryrefslogtreecommitdiff
path: root/alot/commands/__init__.py
diff options
context:
space:
mode:
authorSebastian Jeltsch <sjeltsch@kip.uni-heidelberg.de>2013-04-23 23:55:30 +0200
committerSebastian Jeltsch <sjeltsch@kip.uni-heidelberg.de>2013-05-26 14:33:29 +0200
commitf5a16823baf29b2e94a0d8490d2cc9edab0cfcc2 (patch)
treea6fee7429664f1d00348f813ab2fddf5b8e22d6f /alot/commands/__init__.py
parente673bdbfafbf87bbb2b147cc4ef8abe3e81ea660 (diff)
Repeatability class property, mark more cmds as non-repeatable
Diffstat (limited to 'alot/commands/__init__.py')
-rw-r--r--alot/commands/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index 2c02240b..2637f8cf 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -14,6 +14,8 @@ from alot.helper import split_commandstring
class Command(object):
"""base class for commands"""
+ repeatable = True
+
def __init__(self):
self.prehook = None
self.posthook = None