Files are processed in Order
This commit is contained in:
parent
7c2061f932
commit
6fc54858de
@ -58,6 +58,7 @@ After installing, you can use it like this: `nicole -ior -d ~/music/artist --rm_
|
|||||||
### 1.1
|
### 1.1
|
||||||
- Lyrics are now properly encoded.
|
- Lyrics are now properly encoded.
|
||||||
- If a title contains paranthesis or umlaute, multiple possible urls will be checked.
|
- If a title contains paranthesis or umlaute, multiple possible urls will be checked.
|
||||||
|
- Files are now processed in order
|
||||||
|
|
||||||
## Importand Notice
|
## Importand Notice
|
||||||
This software comes with no warranty!
|
This software comes with no warranty!
|
||||||
|
@ -205,7 +205,10 @@ class Nicole:
|
|||||||
print("\nProcessing directory: " + directory)
|
print("\nProcessing directory: " + directory)
|
||||||
|
|
||||||
|
|
||||||
for entry in listdir(directory):
|
entries = listdir(directory)
|
||||||
|
entries.sort()
|
||||||
|
|
||||||
|
for entry in entries:
|
||||||
entry = path.normpath(directory + "/" + entry)
|
entry = path.normpath(directory + "/" + entry)
|
||||||
|
|
||||||
if path.isfile(entry):
|
if path.isfile(entry):
|
||||||
|
Loading…
Reference in New Issue
Block a user