From 352650cd0bcd805b90aa014b5b472a803f7bd46b Mon Sep 17 00:00:00 2001 From: Dan Astor <13323100+illegitimateDA@users.noreply.github.com> Date: Mon, 2 Jul 2018 12:38:18 -0400 Subject: [PATCH] Domain Case Sanitization Added an uppercase conversion for the domains. --- TrustVisualizer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()