diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-19 18:03:46 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-19 18:03:46 +0200 |
commit | e1c22fad3fffb485da400e4b34c094f201a2c72e (patch) | |
tree | d360610cdf65e2f1906d3cc9c891f6b80066859d /pyload/database/Backend.py | |
parent | PEP-8, Python Zen, refactor and reduce code (part 7 in master module/database) (diff) | |
download | pyload-e1c22fad3fffb485da400e4b34c094f201a2c72e.tar.xz |
range -> xrange
Diffstat (limited to 'pyload/database/Backend.py')
-rw-r--r-- | pyload/database/Backend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/database/Backend.py b/pyload/database/Backend.py index 8b537511e..b6540b2be 100644 --- a/pyload/database/Backend.py +++ b/pyload/database/Backend.py @@ -85,7 +85,7 @@ class DatabaseJob(object): frame = self.frame.f_back output = "" - for _i in range(5): + for _i in xrange(5): output += "\t%s:%s, %s\n" % (basename(frame.f_code.co_filename), frame.f_lineno, frame.f_code.co_name) frame = frame.f_back del frame |