summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src
diff options
context:
space:
mode:
Diffstat (limited to 'roles/lib_openshift/src')
-rw-r--r--roles/lib_openshift/src/lib/rule.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/lib_openshift/src/lib/rule.py b/roles/lib_openshift/src/lib/rule.py
index d1e900427..4590dcf90 100644
--- a/roles/lib_openshift/src/lib/rule.py
+++ b/roles/lib_openshift/src/lib/rule.py
@@ -125,9 +125,9 @@ class Rule(object):
def __eq__(self, other):
'''return whether rules are equal'''
return (self.attribute_restrictions == other.attribute_restrictions and
- self.api_groups == other.api_groups and
- self.resources == other.resources and
- self.verbs == other.verbs)
+ self.api_groups == other.api_groups and
+ self.resources == other.resources and
+ self.verbs == other.verbs)
@staticmethod