Improve language.

This commit is contained in:
Felix Fontein
2024-12-28 14:30:49 +01:00
parent 04c97728dc
commit f69536ef3b
34 changed files with 89 additions and 89 deletions
+2 -2
View File
@@ -841,7 +841,7 @@ class BaseComposeManager(DockerBaseClass):
def cleanup_result(self, result):
if not result.get('failed'):
# Only return stdout and stderr if it's not empty
# Only return stdout and stderr if it is not empty
for res in ('stdout', 'stderr'):
if result.get(res) == '':
result.pop(res)
@@ -851,5 +851,5 @@ class BaseComposeManager(DockerBaseClass):
try:
shutil.rmtree(dir, True)
except Exception:
# shouldn't happen, but simply ignore to be on the safe side
# should not happen, but simply ignore to be on the safe side
pass