Lines Matching refs:self
39 def __init__(self, msg=None):
41 self.msg = "Error: " + str(msg) + "\n\n"
43 self.msg = ""
44 self.msg = self.msg + "Usage: find_newer.py [options] dir...\n\n"
45 self.msg = self.msg + "Options:\n"
46 self.msg = self.msg + " --name glob find files matching glob\n"
47 self.msg = self.msg + " --newer ref find files newer than a reference file"
48 self.msg = self.msg + " -c compare ctimes (the time the file status was last changed)\n"
49 self.msg = self.msg + " This is the default.\n"
50 self.msg = self.msg + " -m compare mtimes (the time the file was last modified)\n"
51 self.msg = self.msg + " -a compare atimes (the time the file was last accessed)\n"
52 self.msg = self.msg + " -f follow symlinks\n"
53 self.msg = self.msg + "\nNote: if more than one of -c -m and -a are specified, find_newer will\n"
54 self.msg = self.msg + "compare the most recent of the given times\n"