diff options
author | hut <hut@lavabit.com> | 2010-03-27 00:36:16 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-03-27 00:36:16 +0100 |
commit | b4ed18002b30bb7df6e4fd564175b5aa3c523e3c (patch) | |
tree | 4fa18ef44b4a24ff526bb2674f4f424d6d07d13f | |
parent | fa4fd0a19461bb10864910fbab166f6713c9e8f5 (diff) | |
download | ranger-b4ed18002b30bb7df6e4fd564175b5aa3c523e3c.tar.gz |
gui.ui: corrected docstring
-rw-r--r-- | ranger/gui/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py index af72ee68..3e8f9e10 100644 --- a/ranger/gui/ui.py +++ b/ranger/gui/ui.py @@ -197,7 +197,7 @@ class UI(DisplayableContainer): self.env.termsize = self.win.getmaxyx() def draw(self): - """Erase the window, then draw all objects in the container""" + """Draw all objects in the container""" self.win.touchwin() DisplayableContainer.draw(self) if self._draw_title and self.settings.update_title: |