aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep Nair2011-10-19 14:37:49 -0500
committerSandeep Nair2011-10-19 14:37:49 -0500
commit956e33ce3bc91a34d65ef64a883889f566b9b400 (patch)
treee2dfce15317c804081514b46b5c11a559e4f6b04
parentb5ec48a5248a4b71a21fdf2e6012fa18a8c84228 (diff)
downloadmad-utils-956e33ce3bc91a34d65ef64a883889f566b9b400.tar.gz
mad-utils-956e33ce3bc91a34d65ef64a883889f566b9b400.tar.xz
mad-utils-956e33ce3bc91a34d65ef64a883889f566b9b400.zip
Changed the warning for incompatible permissions to informational message
-rwxr-xr-xmap-tool/maptool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/map-tool/maptool.py b/map-tool/maptool.py
index 0b1261e..b3acc7b 100755
--- a/map-tool/maptool.py
+++ b/map-tool/maptool.py
@@ -1132,7 +1132,7 @@ class partition:
1132 return False 1132 return False
1133 # Warn for not exact match 1133 # Warn for not exact match
1134 if self.permissions.isPermissionExact(segPerm) != True: 1134 if self.permissions.isPermissionExact(segPerm) != True:
1135 print 'Warning: Incompatible permissions for partition', self.name 1135 print 'Info: Incompatible permissions for segment:', segObj.getIdx(), ' application:', appName, 'in partition:', self.name
1136 if appName not in self.containedSegments: 1136 if appName not in self.containedSegments:
1137 self.containedSegments[appName] = [] 1137 self.containedSegments[appName] = []
1138 self.containedSegments[appName].append(segObj) 1138 self.containedSegments[appName].append(segObj)