Exemplo n.º 1
0
    def invoked (self):
        bologna = Bologna(os.getcwd())
        changes =  bologna.status()

        print "The following changes have been made since the last build."
        print
        if len(changes) == 0:
            print "No Changes have occurted"

        for change_type, path in changes:
            print "\t%s\t%s" % (change_type, path)