Move cppo to blocksfree package

This commit is contained in:
T. Joseph Carter 2017-07-07 07:01:27 -07:00
parent 3f90743d56
commit 5bc600eaf7
1 changed files with 1 additions and 4 deletions

View File

@ -1032,7 +1032,7 @@ def hexdump(
return '\n'.join(out)
def main(args: list):
def run_cppo(args: list):
while True: # breaks when there are no more arguments starting with dash
if len(args) == 1:
usage()
@ -1334,6 +1334,3 @@ def main(args: list):
makedirs(g.appledouble_dir)
process_dir(2)
quit_now(0)
if __name__ == '__main__':
main(sys.argv)