summary refs log tree commit diff stats
path: root/ranger/gui/widgets/console.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/gui/widgets/console.py')
-rw-r--r--ranger/gui/widgets/console.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/ranger/gui/widgets/console.py b/ranger/gui/widgets/console.py
index c9271cac..1977993c 100644
--- a/ranger/gui/widgets/console.py
+++ b/ranger/gui/widgets/console.py
@@ -1,10 +1,7 @@
 # Copyright (C) 2009-2013  Roman Zimbelmann <hut@lavabit.com>
 # This software is distributed under the terms of the GNU GPL version 3.
 
-"""
-The Console widget implements a vim-like console for entering
-commands, searching and executing files.
-"""
+"""The Console widget implements a vim-like console"""
 
 import curses
 import re
@@ -422,8 +419,7 @@ class Console(Widget):
                 self.execute(cmd)
 
     def ask(self, text, callback, choices=['y', 'n']):
-        """
-        Open a question prompt with predefined choices
+        """Open a question prompt with predefined choices
 
         The "text" is displayed as the question text and should include a list
         of possible keys that the user can type.  The "callback" is a function