diff -r 10516539f238 -r 0a02c433f52d Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py --- a/Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py Fri Oct 18 23:00:41 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py Fri Nov 01 15:48:48 2013 +0100 @@ -33,10 +33,11 @@ """ Public method to generate the action objects. """ - self.hgFetchAct = E5Action(self.trUtf8('Fetch changes'), - UI.PixmapCache.getIcon("vcsUpdate.png"), - self.trUtf8('Fetch changes'), - 0, 0, self, 'mercurial_fetch') + self.hgFetchAct = E5Action( + self.trUtf8('Fetch changes'), + UI.PixmapCache.getIcon("vcsUpdate.png"), + self.trUtf8('Fetch changes'), + 0, 0, self, 'mercurial_fetch') self.hgFetchAct.setStatusTip(self.trUtf8( 'Fetch changes from a remote repository' )) @@ -81,7 +82,8 @@ shouldReopen = self.vcs.getExtensionObject("fetch")\ .hgFetch(self.project.getProjectPath()) if shouldReopen: - res = E5MessageBox.yesNo(None, + res = E5MessageBox.yesNo( + None, self.trUtf8("Fetch"), self.trUtf8("""The project should be reread. Do this now?"""), yesDefault=True)