start counting from 1 and not 0
This commit is contained in:
parent
a72f385b5a
commit
d5b6173e57
1 changed files with 2 additions and 2 deletions
|
@ -147,10 +147,10 @@ for i, (cat, pkg, ver, rev) in enumerate(pkgnames):
|
|||
debian_deps["%s/%s"%(cat,pkg)] = list(set(ddeps))
|
||||
count +=1
|
||||
|
||||
sys.stderr.write("\rFinding reduced dependencies: %d/%d, found %d. Estimated time left: %s h"%(i, len(pkgnames), count, estimate_remaining_time(before, len(pkgnames), i)))
|
||||
sys.stderr.write("\rFinding reduced dependencies: %d/%d, found %d. Estimated time left: %s h"%(i+1, len(pkgnames), count, estimate_remaining_time(before, len(pkgnames), i)))
|
||||
sys.stdout.flush()
|
||||
|
||||
sys.stderr.write("\rFinding reduced dependencies: %d/%d, found %d. Estimated time left: %s h\n"%(i, len(pkgnames), count, estimate_remaining_time(before, len(pkgnames), i)))
|
||||
sys.stderr.write("\rFinding reduced dependencies: %d/%d, found %d. Estimated time left: %s h\n"%(i+1, len(pkgnames), count, estimate_remaining_time(before, len(pkgnames), i)))
|
||||
|
||||
missing_deb_mappings = list()
|
||||
|
||||
|
|
Loading…
Reference in a new issue