Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions SU2_PY/SU2/util/polarSweepLib.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ def readParameter(dataFile, nLines, keyWord, iDoNot, verbose):
def setContribution(dataFile, nLines, keyWord, iDoNot, verbose):

from numpy import size
import string

#
# default values
Expand Down Expand Up @@ -176,7 +175,7 @@ def setContribution(dataFile, nLines, keyWord, iDoNot, verbose):

# now find out where the standard text ends
iBF = firstPart.lower().index("family") + 6
nameText = string.join(firstPart[iBF:].split(), "")
nameText = "".join(firstPart[iBF:].split())

# component name located. Now check about its contribution
try:
Expand Down
Loading