eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py

changeset 7628
f904d0eef264
parent 7360
9190402e4505
child 7771
787a6b3f8c9f
--- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py	Wed Jun 17 17:12:21 2020 +0200
+++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py	Wed Jun 17 20:18:54 2020 +0200
@@ -158,12 +158,12 @@
             tmpdir = Utilities.getEnvironmentEntry('TMPDIR')
         elif Utilities.hasEnvironmentEntry('TMP'):
             tmpdir = Utilities.getEnvironmentEntry('TMP')
-        elif os.path.exists('/var/tmp'):
-            tmpdir = '/var/tmp'
+        elif os.path.exists('/var/tmp'):    # secok
+            tmpdir = '/var/tmp'             # secok
         elif os.path.exists('/usr/tmp'):
             tmpdir = '/usr/tmp'
-        elif os.path.exists('/tmp'):
-            tmpdir = '/tmp'
+        elif os.path.exists('/tmp'):        # secok
+            tmpdir = '/tmp'                 # secok
         else:
             E5MessageBox.critical(
                 self,

eric ide

mercurial