#! /usr/bin/env python

import os
import glob

top = "."

for pth, dirs, files in os.walk(top):
  pyfiles = glob.glob(os.path.join(pth, "*.unfixed"))
  for p in pyfiles:
    print "cleaning up:", p
    os.remove(p)
