Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

status: fix NameError with repo variable

Changeset bc8ce9f33b50

Parent 4e30f55b8a68

by Steve Borho

Changes to one file · Browse files at bc8ce9f33b50 Showing diff from parent 4e30f55b8a68 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
230
231
232
233
234
 
 
235
236
237
 
230
231
232
 
 
233
234
235
236
237
@@ -230,8 +230,8 @@
  self.setting_lastpos = settings['gstatus-lastpos']   except KeyError:   pass - self.mqmode = None - if hasattr(self.repo, 'mq') and self.repo.mq.applied and repo['.'] == repo['qtip']: + self.mqmode, repo = None, self.repo + if hasattr(repo, 'mq') and repo.mq.applied and repo['.'] == repo['qtip']:   self.mqmode = True