Skip to content

Commit

Permalink
Fix #616
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Apr 14, 2021
1 parent fe5826e commit 0da4e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairis/core/MySQLDatabaseProxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def getRequirements(self,constraintId = '',isAsset = 1):
reqDict = {}
for reqLabel, reqId, reqName, reqDesc, priority, rationale, fitCriterion, originator, reqVersion, reqType, reqDomain in reqRows:
r = RequirementFactory.build(reqId,reqLabel,reqName,reqDesc,priority,rationale,fitCriterion,originator,reqType,reqDomain,reqVersion)
reqDict[reqDesc] = r
reqDict[reqName] = r
return reqDict

def getRequirement(self,reqId):
Expand Down

0 comments on commit 0da4e10

Please sign in to comment.