parser=argparse.ArgumentParser(description="Checks any number of dds files for common issues, including formats not supported by KSP, and DXT5 textures that don't use the alpha channel.")
modes.add_argument('--transparency','-t',dest='mode',action='store_const',const="transparency",default="none",help="Generate a list of files that fail the transparency check")
modes.add_argument('--format','-f',dest='mode',action='store_const',const="format",default="none",help="Generate a list of files that fail the format check")