[pyatspi2] Fix whitspace errors in enum.py



commit 95f1441307729efc13f0cdf586683dc67c31edae
Author: Mark Doffman <mark doffman codethink co uk>
Date:   Fri Dec 18 06:05:54 2009 -0800

    Fix whitspace errors in enum.py

 pyatspi/enum.py |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/pyatspi/enum.py b/pyatspi/enum.py
index e31540a..605cbc8 100644
--- a/pyatspi/enum.py
+++ b/pyatspi/enum.py
@@ -27,13 +27,13 @@ class Enum(UInt32):
         def __eq__(self, other):
                 if other is None:
                         return False
-		try:
-                	if int(self) == int(other):
-                        	return True
-                	else:
-                        	return False
-		except ValueError:
-			return False
+                try:
+                        if int(self) == int(other):
+                                return True
+                        else:
+                                return False
+                except ValueError:
+                        return False
 
         def __hash__(self):
                 return int(self)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]