Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py

changeset 1318
6fa303bd65d6
parent 1260
9488a3aceb0e
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1316:0bb67aced672 1318:6fa303bd65d6
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')

eric ide

mercurial