src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py

branch
eric7
changeset 10438
4cd7e5a8b3cf
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py	Fri Dec 22 19:45:17 2023 +0100
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py	Sat Dec 23 15:40:23 2023 +0100
@@ -33,7 +33,9 @@
         Constructor
 
         @param vcs reference to the vcs object
-        @param parent parent widget (QWidget)
+        @type Subversion
+        @param parent parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -56,8 +58,10 @@
         """
         Public slot to start the svn info command.
 
-        @param projectPath path name of the project (string)
-        @param fn file or directory name relative to the project (string)
+        @param projectPath path name of the project
+        @type str
+        @param fn file or directory name relative to the project
+        @type str
         """
         cwd = os.getcwd()
         os.chdir(projectPath)
@@ -176,7 +180,8 @@
         """
         Private slot to show an error message.
 
-        @param msg error message to show (string)
+        @param msg error message to show
+        @type str
         """
         infoStr = "<p>{0}</p>".format(msg)
         self.infoBrowser.setHtml(infoStr)

eric ide

mercurial