diff --git a/TrustVisualizer.py b/TrustVisualizer.py index 159ccfa..65a1449 100755 --- a/TrustVisualizer.py +++ b/TrustVisualizer.py @@ -36,8 +36,8 @@ # csv format: # SourceName,TargetName,TrustType,TrustAttributes,TrustDirection,WhenCreated,WhenChanged ecolor = '' - sourceName = row[0].strip() - targetName = row[1].strip() + sourceName = row[0].upper().strip() + targetName = row[1].upper().strip() trustType = row[2].strip() trustAttributes = row[3].strip() trustDirection = row[4].strip()