~sinzui/gdp/trunk

« back to all changes in this revision

Viewing changes to plugins/gdp/bzr.py

  • Committer: Curtis Hovey
  • Date: 2013-08-16 12:31:56 UTC
  • Revision ID: curtis@hovey.name-20130816123156-d0qqro6nammy8419
Fixed spelling.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
bzr_qrevert = Command(['bzr', 'qrevert'], spawn=True)
55
55
bzr_qsend = Command(['bzr', 'qsend'], spawn=True)
56
56
bzr_qstatus = Command(['bzr', 'qrun', '-e', '--ui-mode', 'status'], spawn=True)
 
57
bzr_qtag = Command(['bzr', 'qtag'], spawn=True)
57
58
bzr_qtags = Command(['bzr', 'qrun', '-e', '--ui-mode', 'tags'], spawn=True)
58
59
 
59
60
 
183
184
        """Show the tags in the branch."""
184
185
        bzr_qtags(cwd=self.working_tree)
185
186
 
 
187
    def tag_revision(self, action):
 
188
        """Tag a revision in the branch."""
 
189
        bzr_qtag(cwd=self.working_tree)
 
190
 
186
191
    def show_annotations(self, action):
187
192
        """Show the annotated revisions of the file."""
188
193
        document = self.window.get_active_document()