95 |
95 |
96 # find the root of the repo |
96 # find the root of the repo |
97 repodir = dname |
97 repodir = dname |
98 while not os.path.isdir(os.path.join(repodir, self.vcs.adminDir)): |
98 while not os.path.isdir(os.path.join(repodir, self.vcs.adminDir)): |
99 repodir = os.path.dirname(repodir) |
99 repodir = os.path.dirname(repodir) |
100 if repodir == os.sep: |
100 if os.path.splitdrive(repodir)[1] == os.sep: |
101 return |
101 return |
102 |
102 |
103 args = [] |
103 args = [] |
104 args.append('annotate') |
104 args.append('annotate') |
105 args.append('--follow') |
105 args.append('--follow') |