problems.append('Found %s at %s' % (what, fd))
def warnproblem(what, fd, fp):
- logging.info('Warning: Found %s at %s' % (what, fd))
+ logging.warn('Found %s at %s' % (what, fd))
def insidedir(path, dirname):
return path.endswith('/%s' % dirname) or '/%s/' % dirname in path
logging.info("Couldn't find package ID")
sys.exit(1)
if not version:
- logging.info("WARNING: Couldn't find latest version name")
+ logging.warn("Couldn't find latest version name")
if not vercode:
- logging.info("WARNING: Couldn't find latest version code")
+ logging.warn("Couldn't find latest version code")
else:
spec = os.path.join(root_dir, 'buildozer.spec')
if os.path.exists(spec):