110 def on_configButton_clicked(self): |
110 def on_configButton_clicked(self): |
111 """ |
111 """ |
112 Private slot to edit the (per user) Mercurial configuration file. |
112 Private slot to edit the (per user) Mercurial configuration file. |
113 """ |
113 """ |
114 from ..HgUserConfigDialog import HgUserConfigDialog |
114 from ..HgUserConfigDialog import HgUserConfigDialog |
115 dlg = HgUserConfigDialog() |
115 from ..HgUtilities import hgVersion |
|
116 |
|
117 dlg = HgUserConfigDialog(version=hgVersion(self.__plugin)[1]) |
116 dlg.exec_() |
118 dlg.exec_() |