From 47bc50d9fbbe8d72b589a6360aa8b5f32d6ba74b Mon Sep 17 00:00:00 2001
From: Lance Stout <lancestout@gmail.com>
Date: Thu, 4 Aug 2011 22:37:22 -0700
Subject: Cosmetic PEP8 fixes.

---
 sleekxmpp/features/feature_mechanisms/mechanisms.py        | 1 -
 sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py | 6 +++---
 2 files changed, 3 insertions(+), 4 deletions(-)

(limited to 'sleekxmpp/features')

diff --git a/sleekxmpp/features/feature_mechanisms/mechanisms.py b/sleekxmpp/features/feature_mechanisms/mechanisms.py
index d60818bb..2debf3be 100644
--- a/sleekxmpp/features/feature_mechanisms/mechanisms.py
+++ b/sleekxmpp/features/feature_mechanisms/mechanisms.py
@@ -29,7 +29,6 @@ class feature_mechanisms(base_plugin):
         self.description = "SASL Stream Feature"
         self.stanza = stanza
 
-
         def tls_active():
             return 'starttls' in self.xmpp.features
 
diff --git a/sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py b/sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py
index 1189cd80..c09cafbd 100644
--- a/sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py
+++ b/sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py
@@ -42,9 +42,9 @@ class Mechanisms(ElementBase):
         """
         self.del_mechanisms()
         for val in values:
-           mech = ET.Element('{%s}mechanism' % self.namespace)
-           mech.text = val
-           self.append(mech)
+            mech = ET.Element('{%s}mechanism' % self.namespace)
+            mech.text = val
+            self.append(mech)
 
     def del_mechanisms(self):
         """
-- 
cgit v1.2.3