summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-06-09 10:44:14 +0200
committerhut <hut@lavabit.com>2010-06-09 10:44:14 +0200
commit2a6ad17d6ea8b3973970e5d9bd1604375629d6e9 (patch)
treec4b97854a334da55023f4e5dd98eed209ffb1a42
parent8129ccb6d1e10182d60a71483da2c3db08108adb (diff)
downloadranger-2a6ad17d6ea8b3973970e5d9bd1604375629d6e9.tar.gz
Fixed some docstrings
-rw-r--r--ranger/core/environment.py4
-rw-r--r--ranger/ext/shell_escape.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/ranger/core/environment.py b/ranger/core/environment.py
index bb6abb36..fca2168b 100644
--- a/ranger/core/environment.py
+++ b/ranger/core/environment.py
@@ -28,8 +28,8 @@ ALLOWED_CONTEXTS = ('browser', 'pager', 'embedded_pager', 'taskview',
 		'console')
 
 class Environment(SettingsAware, SignalDispatcher):
-	"""A collection of data which is relevant for more than
-	one class.
+	"""
+	A collection of data which is relevant for more than one class.
 	"""
 
 	cwd = None  # current directory
diff --git a/ranger/ext/shell_escape.py b/ranger/ext/shell_escape.py
index f8393f2a..ec9e4b12 100644
--- a/ranger/ext/shell_escape.py
+++ b/ranger/ext/shell_escape.py
@@ -14,7 +14,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 """
-A function to escape metacharacters of arguments for shell commands.
+Functions to escape metacharacters of arguments for shell commands.
 """
 
 META_CHARS = (' ', "'", '"', '`', '&', '|', ';',