summaryrefslogtreecommitdiff
path: root/alot/commands/__init__.py
diff options
context:
space:
mode:
authorSebastian Jeltsch <sjeltsch@kip.uni-heidelberg.de>2013-05-25 23:37:14 +0200
committerSebastian Jeltsch <sjeltsch@kip.uni-heidelberg.de>2013-05-26 14:33:29 +0200
commit4b9adf51d824dcd10695d00fcb793a0858c20495 (patch)
treec0d69853ee70d63c05bbd3dae6fa69b40b12ab5d /alot/commands/__init__.py
parentb393996ad481212fd381899419646c9422c3efb7 (diff)
changed repeatability default to False and reconsider repeatability of all Commands
Diffstat (limited to 'alot/commands/__init__.py')
-rw-r--r--alot/commands/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index cb84d366..8af721ae 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -14,7 +14,7 @@ from alot.helper import split_commandstring
class Command(object):
"""base class for commands"""
- repeatable = True
+ repeatable = False
def __init__(self):
self.prehook = None