From e1c22fad3fffb485da400e4b34c094f201a2c72e Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sun, 19 Apr 2015 18:03:46 +0200 Subject: range -> xrange --- pyload/cli/Cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyload/cli/Cli.py') diff --git a/pyload/cli/Cli.py b/pyload/cli/Cli.py index a1f192bb3..cd3252220 100644 --- a/pyload/cli/Cli.py +++ b/pyload/cli/Cli.py @@ -214,7 +214,7 @@ class Cli(object): # clear old output if line < self.lastLowestLine: - for i in range(line + 1, self.lastLowestLine + 1): + for i in xrange(line + 1, self.lastLowestLine + 1): println(i, "") self.lastLowestLine = line -- cgit v1.2.3