# 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.
This commit is contained in:
Guido van Rossum 1998-07-02 22:17:28 +00:00
parent 6bbd1d0f0e
commit b3bf2cd64b
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ def show(total, d, prefix):
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]`)