make lint happ and python fast :)

This commit is contained in:
Thomas S Hatch 2014-12-10 14:08:45 -07:00
parent c9158cb2e0
commit e809fa6c6e

View File

@ -32,7 +32,7 @@ __opts__ = {
def _shlex_split(s):
# from python:shlex.split: passing None for s will read
# the string to split from standard input.
if s == None:
if s is None:
ret = shlex.split('')
else:
ret = shlex.split(s)