Fix use of wrong 'i' variable name
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Sat, 25 Jan 2020 17:48:29 +0000 (18:48 +0100)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 27 Jan 2020 17:23:24 +0000 (18:23 +0100)
commit611c5d03c2a7b0193c0b7bd5fa23d414997464cd
treeb4172e3ad0c5cf323aed24ecae93e93f09903b3d
parent2a307f41c27c10cd86218b721f0f00e56cf3d312
Fix use of wrong 'i' variable name

pylint complained:
tarfile.py:3797:38: E0602: Undefined variable 'i' (undefined-variable)

Code was introduced like this in

commit 27ee4dd4df48340541317123f5df348056c235ca
Author:     Philipp Gesang <philipp.gesang@intra2net.com>
AuthorDate: Tue Aug 29 12:00:54 2017 +0200

    implement volume handling for rescue mode

    When reconstructing the index, traverse backup volumes and set
    the “volume” member on the objects appropriately.

-> I guess 'i' was renamed to nvol for better readability.
deltatar/tarfile.py