diff options
author | BonfaceKilz | 2021-04-30 12:47:43 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-04-30 13:45:15 +0300 |
commit | d1bc52a0d8e1219f377e804c3f27a3543d234fcb (patch) | |
tree | 98e048c0dced42bff649ff0746ed6db2b49ff00d /wqflask/utility/tools.py | |
parent | 03b6bcee689c1910bd850c6109cc37adc509cf5a (diff) | |
download | genenetwork2-d1bc52a0d8e1219f377e804c3f27a3543d234fcb.tar.gz |
autopep8: Fix E70 and E701
Diffstat (limited to 'wqflask/utility/tools.py')
-rw-r--r-- | wqflask/utility/tools.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index 263c3948..d82e478d 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -198,7 +198,8 @@ def locate(name, subdir=None): return lookfor else: raise Exception("Can not locate " + lookfor) - if subdir: sys.stderr.write(subdir) + if subdir: + sys.stderr.write(subdir) raise Exception("Can not locate " + name + " in " + base) |