summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-03-11 18:13:44 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2012-03-11 18:13:44 +0000
commita5604af2e81033ceb076d36ba2ce675a3cdfa81f (patch)
tree8bf6b311fe67c0407905255d2e790a9adfa36d0c
parent90f57a7d6e488a196bd800d87314af986c1f4ccc (diff)
fix: dumb typo introduced in cleanup
-rw-r--r--alot/commands/globals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 0c5687ca..77ef05d9 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -93,7 +93,7 @@ class PromptCommand(Command):
def apply(self, ui):
logging.info('open command shell')
mode = ui.current_buffer.modename
- cmpl = CommandLineCompleter(ui.dbman, mode, ui.current_buffer,),
+ cmpl = CommandLineCompleter(ui.dbman, mode, ui.current_buffer)
cmdline = yield ui.prompt('',
text=self.startwith,
completer=cmpl,