Blame SOURCES/pidstats-fix-documentation-indentation.patch

4cad9c
From f1c8bf461da1344ae48f456a129502f276f5fc14 Mon Sep 17 00:00:00 2001
4cad9c
From: Jiri Kastner <jkastner@redhat.com>
4cad9c
Date: Fri, 9 Oct 2015 13:50:09 +0200
4cad9c
Subject: [PATCH] pidstats: fix documentation indentation
4cad9c
4cad9c
Signed-off-by: Jiri Kastner <jkastner@redhat.com>
4cad9c
Signed-off-by: John Kacur <jkacur at redhat.com>
4cad9c
---
4cad9c
 procfs/procfs.py | 22 +++++++++++-----------
4cad9c
 1 file changed, 11 insertions(+), 11 deletions(-)
4cad9c
4cad9c
diff --git a/procfs/procfs.py b/procfs/procfs.py
4cad9c
index 3d683c1ec5c6..0706fbc3debd 100755
4cad9c
--- a/procfs/procfs.py
4cad9c
+++ b/procfs/procfs.py
4cad9c
@@ -412,20 +412,20 @@ class pidstats:
4cad9c
 		return key in self.processes
4cad9c
 
4cad9c
 	def reload(self):
4cad9c
-	"""
4cad9c
-	This operation will trow away the current dictionary contents, if any, and
4cad9c
-	read all the pid files from /proc/, instantiating a 'process' instance for
4cad9c
-	each of them.
4cad9c
+		"""
4cad9c
+		This operation will throw away the current dictionary contents, if any, and
4cad9c
+		read all the pid files from /proc/, instantiating a 'process' instance for
4cad9c
+		each of them.
4cad9c
 
4cad9c
-	This is a high overhead operation, and should be avoided if the perf python
4cad9c
-	binding can be used to detect when new threads appear and existing ones
4cad9c
-	terminate.
4cad9c
+		This is a high overhead operation, and should be avoided if the perf python
4cad9c
+		binding can be used to detect when new threads appear and existing ones
4cad9c
+		terminate.
4cad9c
 
4cad9c
-	In RHEL it is found in the python-perf rpm package.
4cad9c
+		In RHEL it is found in the python-perf rpm package.
4cad9c
 
4cad9c
-	More information about the perf facilities can be found in the 'perf_event_open'
4cad9c
-	man page.
4cad9c
-	"""
4cad9c
+		More information about the perf facilities can be found in the 'perf_event_open'
4cad9c
+		man page.
4cad9c
+		"""
4cad9c
 		del self.processes
4cad9c
 		self.processes = {}
4cad9c
 		pids = os.listdir(self.basedir)
4cad9c
-- 
4cad9c
2.4.3
4cad9c