Skip to content

Commit a1cc970

Browse files
committed
Fix typo
1 parent 83ef96e commit a1cc970

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CfdOF/CfdPreferencePage.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def threadFinished(self, status):
391391
"$WM_PROJECT_USER_DIR/"+CFMESH_FILE_BASE,
392392
'log.Allwmake', self.installFinished, stderr_hook=self.stderrFilter)
393393
else:
394-
if os.system() == 'Darwin':
394+
if platform.system() == 'Darwin':
395395
self.install_process = CfdTools.startFoamApplication(
396396
"export WM_NCOMPPROCS=`sysctl -n hw.logicalcpu`; ./Allwmake",
397397
"$WM_PROJECT_USER_DIR/"+CFMESH_FILE_BASE,
@@ -419,7 +419,7 @@ def threadFinished(self, status):
419419
"$WM_PROJECT_USER_DIR/"+HISA_FILE_BASE,
420420
'log.Allwmake', self.installFinished, stderr_hook=self.stderrFilter)
421421
else:
422-
if os.system() == 'Darwin':
422+
if platform.system() == 'Darwin':
423423
self.install_process = CfdTools.startFoamApplication(
424424
"export WM_NCOMPPROCS=`sysctl -n hw.logicalcpu`; ./Allwmake",
425425
"$WM_PROJECT_USER_DIR/"+HISA_FILE_BASE,

package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package format="1">
33
<name>CfdOF</name>
44
<description>Computational Fluid Dynamics (CFD) for FreeCAD based on OpenFOAM</description>
5-
<version>1.25.9</version>
5+
<version>1.25.10</version>
66
<maintainer email="[email protected]">Oliver Oxtoby</maintainer>
77
<license file="LICENSE">LGPL-2.0-or-later</license>
88
<url type="repository" branch="master">https://github.com/jaheyns/CfdOF</url>

0 commit comments

Comments
 (0)