From a9041dbf61822965e7315f23f0b287f2222f926c Mon Sep 17 00:00:00 2001
From: Arnaud Taffanel <arnaud@bitcraze.io>
Date: Wed, 24 Jan 2018 12:38:45 -0800
Subject: [PATCH] #238: Fix flake8

---
 src/cfclient/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/cfclient/__init__.py b/src/cfclient/__init__.py
index 054c7ed..270fa05 100644
--- a/src/cfclient/__init__.py
+++ b/src/cfclient/__init__.py
@@ -32,7 +32,8 @@ import sys
 if not hasattr(sys, 'frozen'):
     module_path = os.path.dirname(__file__)
 else:
-    module_path = os.path.join(os.path.dirname(sys.executable), 'lib', 'cfclient')
+    module_path = os.path.join(os.path.dirname(sys.executable),
+                               'lib', 'cfclient')
 config_path = AppDirs("cfclient", "Bitcraze").user_config_dir
 
 # Locate the sdl2 lib on Windows (should be in cfclient/thirst_party/)
-- 
GitLab