Trivial: Remove useless string_to_bool()

string_to_bool() is not used by anyone.
Furthermore, it is not well designed. It tries to convirt 't', '1'
to True, which could be confused.

So remove it. If we need something similar, let's make a better one.

Change-Id: Ic1f63480c806bf7bcc9f541fc806eed297ddf718
This commit is contained in:
Tang Chen 2015-12-29 10:50:44 +08:00
parent 8d718e9d67
commit 5f0147ad12

@ -258,10 +258,6 @@ def sort_items(items, sort_str):
return items
def string_to_bool(arg):
return arg.strip().lower() in ('t', 'true', 'yes', '1')
def env(*vars, **kwargs):
"""Search for the first defined of possibly many env vars