src/eric7/Plugins/VcsPlugins/vcsGit/GitUtilities.py

branch
eric7
changeset 9221
bf71ee032bb4
parent 9209
b99e7fd55fd3
child 9413
80c06d472826
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitUtilities.py	Wed Jul 13 11:16:20 2022 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitUtilities.py	Wed Jul 13 14:55:47 2022 +0200
@@ -17,7 +17,7 @@
 def getConfigPath():
     """
     Public function to get the filename of the config file.
-    
+
     @return filename of the config file (string)
     """
     if Utilities.isWindowsPlatform():
@@ -31,14 +31,14 @@
 def prepareProcess(proc, language=""):
     """
     Public function to prepare the given process.
-    
+
     @param proc reference to the process to be prepared (QProcess)
     @param language language to be set (string)
     """
     env = QProcessEnvironment.systemEnvironment()
-    
+
     # set the language for the process
     if language:
         env.insert("LANGUAGE", language)
-    
+
     proc.setProcessEnvironment(env)

eric ide

mercurial