diff -r 8ee36e8a315f -r 9f89364d9ffd Plugins/VcsPlugins/vcsPySvn/subversion.py --- a/Plugins/VcsPlugins/vcsPySvn/subversion.py Sat Jan 28 18:04:14 2017 +0100 +++ b/Plugins/VcsPlugins/vcsPySvn/subversion.py Sat Jan 28 19:21:31 2017 +0100 @@ -967,27 +967,6 @@ project.removeFile(name) return res - def vcsLog(self, name): - """ - Public method used to view the log of a file/directory from the - Subversion repository. - - @param name file/directory name to show the log of (string) - """ - isFile = os.path.isfile(name) - noEntries, ok = QInputDialog.getInt( - None, - self.tr("Subversion Log"), - self.tr("Select number of entries to show."), - self.getPlugin().getPreferences("LogLimit"), 1, 999999, 1) - if ok: - from .SvnLogDialog import SvnLogDialog - self.log = SvnLogDialog(self, isFile=isFile) - self.log.show() - self.log.raise_() - QApplication.processEvents() - self.log.start(name, noEntries) - def vcsDiff(self, name): """ Public method used to view the difference of a file/directory to the