# The variable total is never used somehow.  I think I had plans for
# it but can't remember what.  Get rid of a comparison that breaks.
diff --git a/Tools/scripts/dutree.py b/Tools/scripts/dutree.py
index 4cb9353..3098f2b 100755
--- a/Tools/scripts/dutree.py
+++ b/Tools/scripts/dutree.py
@@ -38,8 +38,8 @@
 		tsub, dsub = d[key]
 		list.append((tsub, key))
 		if tsub is not None: sum = sum + tsub
-	if sum < total:
-		list.append((total - sum, os.curdir))
+## 	if sum < total:
+## 		list.append((total - sum, os.curdir))
 	list.sort()
 	list.reverse()
 	width = len(`list[0][0]`)