Ignore:
Timestamp:
May 16, 2016, 3:26:14 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
a377204
Parents:
dc654f8
Message:

python/: fix comparison to False

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/lib/gen_external.py

    rdc654f8 rf44384d  
    7272def generate_external(header=header, output_path=output_path, usedouble=False, overwrite=True):
    7373    if not os.path.isdir(output_path): os.mkdir(output_path)
    74     elif overwrite == False: return glob.glob(os.path.join(output_path, '*.c'))
     74    elif not overwrite: return glob.glob(os.path.join(output_path, '*.c'))
    7575    sources_list = []
    7676    cpp_output, cpp_objects = get_cpp_objects(header)
Note: See TracChangeset for help on using the changeset viewer.