102 from .HgGpgSignDialog import HgGpgSignDialog |
102 from .HgGpgSignDialog import HgGpgSignDialog |
103 dlg = HgGpgSignDialog(self.vcs.hgGetTagsList(repodir), |
103 dlg = HgGpgSignDialog(self.vcs.hgGetTagsList(repodir), |
104 self.vcs.hgGetBranchesList(repodir), |
104 self.vcs.hgGetBranchesList(repodir), |
105 self.vcs.hgGetBookmarksList(repodir)) |
105 self.vcs.hgGetBookmarksList(repodir)) |
106 if dlg.exec_() == QDialog.Accepted: |
106 if dlg.exec_() == QDialog.Accepted: |
107 revision, noCommit, message, keyId, local, force = \ |
107 revision, noCommit, message, keyId, local, force = ( |
108 dlg.getData() |
108 dlg.getData() |
|
109 ) |
109 if revision: |
110 if revision: |
110 revisions = [revision] |
111 revisions = [revision] |
111 else: |
112 else: |
112 revisions = [] |
113 revisions = [] |
113 else: |
114 else: |