fixup! Improve variable names to match Code Style Guide (see #103)
This commit is contained in:
parent
99958eabc9
commit
188dcb4ef8
1 changed files with 3 additions and 3 deletions
|
@ -924,7 +924,7 @@ class MCGAlbum:
|
|||
def __init__(self, title, host):
|
||||
self._artists = []
|
||||
self._albumartists = []
|
||||
self._pathes = []
|
||||
self._paths = []
|
||||
if type(title) is list:
|
||||
title = title[0]
|
||||
self._title = title
|
||||
|
@ -986,8 +986,8 @@ class MCGAlbum:
|
|||
):
|
||||
self._dates.append(track.get_date())
|
||||
path = os.path.dirname(track.get_file())
|
||||
if path not in self._pathes:
|
||||
self._pathes.append(path)
|
||||
if path not in self._paths:
|
||||
self._paths.append(path)
|
||||
if track.get_last_modified():
|
||||
if (
|
||||
not self._last_modified
|
||||
|
|
Loading…
Reference in a new issue