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

status: simplify set_title

Changeset 4f79102d1e51

Parent 6e7ce37d44fd

by Steve Borho

Changes to one file · Browse files at 4f79102d1e51 Showing diff from parent 6e7ce37d44fd Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
146
147
148
149
 
 
150
151
152
 
146
147
148
 
149
150
151
152
153
@@ -146,7 +146,8 @@
  root = os.path.basename(self.repo.root)   revs = self.opts.get('rev')   if revs: - return root + ' status ' + ':'.join(revs) + ' ' + ' '.join(self.pats) + r = ':'.join(revs) + return ' '.join([root, 'status', r]) + ' '.join(self.pats)   elif self.mqmode:   patch = self.repo.mq.lookup('qtip')   return root + ' applied MQ patch ' + patch