Blob Blame History Raw
From c20bf465f4689634d66fb157b5f52ecc15720e4c Mon Sep 17 00:00:00 2001
From: Eric Garver <eric@garver.life>
Date: Thu, 31 Jan 2019 09:19:44 -0500
Subject: [PATCH 54/73] treewide: fix over indentation (flake8 E117)

(cherry picked from commit 161cdae8c1391bed05c70018ff24fe2e29ddc9b8)
(cherry picked from commit 3bf261aa9a312f65040810338f0efdb9ff9bc5af)
---
 src/firewall-config.in    | 4 ++--
 src/firewall/functions.py | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/firewall-config.in b/src/firewall-config.in
index c19541b0ce82..0bb7b05abdad 100755
--- a/src/firewall-config.in
+++ b/src/firewall-config.in
@@ -1628,8 +1628,8 @@ class FirewallConfig(object):
 
     def connection_changed(self):
         if self.connection_timer:
-                GLib.source_remove(self.connection_timer)
-                self.connection_timer = None
+            GLib.source_remove(self.connection_timer)
+            self.connection_timer = None
         if self.fw.connected:
             self.fw.authorizeAll()
             self.statusLabel.set_text(self.connected_label)
diff --git a/src/firewall/functions.py b/src/firewall/functions.py
index eb67ec4b73bb..5f54a59204b8 100644
--- a/src/firewall/functions.py
+++ b/src/firewall/functions.py
@@ -148,7 +148,7 @@ def portInPortRange(port, range):
         return _port == getPortID(_range[0])
     if len(_range) == 2 and \
        _port >= getPortID(_range[0]) and _port <= getPortID(_range[1]):
-            return True
+        return True
 
     return False
 
-- 
2.20.1