Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

hgignore: fix call to repo.dirstate.status()

Changeset ab2627be6920

Parent a7d4a0c9e5e5

by Steve Borho

Changes to one file · Browse files at ab2627be6920 Showing diff from parent a7d4a0c9e5e5 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgignore.py Stacked
 
149
150
151
152
 
 
153
154
155
 
149
150
151
 
152
153
154
155
156
@@ -149,7 +149,8 @@
  try: repo = hg.repository(ui.ui(), path=self.root)   except: gtk.main_quit()   matcher = match.always(repo.root, repo.root) - changes = repo.dirstate.status(matcher, unknown=True) + changes = repo.dirstate.status(matcher, ignored=False, clean=False, + unknown=True)   (lookup, modified, added, removed,   deleted, unknown, ignored, clean) = changes   self.unkmodel.clear()