83 |
83 |
84 # find the root of the repo |
84 # find the root of the repo |
85 repodir = dname |
85 repodir = dname |
86 while not os.path.isdir(os.path.join(repodir, self.vcs.adminDir)): |
86 while not os.path.isdir(os.path.join(repodir, self.vcs.adminDir)): |
87 repodir = os.path.dirname(repodir) |
87 repodir = os.path.dirname(repodir) |
88 if repodir == os.sep: |
88 if os.path.splitdrive(repodir)[1] == os.sep: |
89 return |
89 return |
90 |
90 |
91 args = [] |
91 args = [] |
92 args.append('annotate') |
92 args.append('annotate') |
93 args.append('--follow') |
93 args.append('--follow') |