diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2018-01-25 13:02:00 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-25 13:02:00 +0700 |
commit | 4700f2d79a108dc12b1624fb768b0047cbf0d590 (patch) | |
tree | f9689782e50096d6d2282e6eb470ccd572b4058b /methods.py | |
parent | 94b88c7b0f8c140667824e70602b25ac5c53f61d (diff) | |
parent | e6f787cb028f7780b3af12a4667deaf9d75f0ceb (diff) |
Merge pull request #16057 from kurtisharms/fix_ts
Fix mixed use of tabs and spaces in methods.py
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/methods.py b/methods.py index b7515484c5..f4d33fb6d8 100644 --- a/methods.py +++ b/methods.py @@ -1489,9 +1489,9 @@ def split_lib(self, libname, src_list = None, env_lib = None): if src_list == None: src_list = getattr(env, libname + "_sources") - - if type(env_lib) == type(None): - env_lib = env + + if type(env_lib) == type(None): + env_lib = env for f in src_list: fname = "" |