mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2024-11-24 04:43:10 +00:00
Fixed Value Error
ValueError: '=' alignment not allowed in string format specifier
This commit is contained in:
parent
00fb436124
commit
12a6e04f73
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ class Database:
|
||||||
with open(self.directory + "/./Data/pokemon.txt", 'r') as data_file:
|
with open(self.directory + "/./Data/pokemon.txt", 'r') as data_file:
|
||||||
for line in data_file: # Load everything but the Pokemon from the 'Extra' folder.
|
for line in data_file: # Load everything but the Pokemon from the 'Extra' folder.
|
||||||
identifier, _, name = line.strip().partition(' ')
|
identifier, _, name = line.strip().partition(' ')
|
||||||
identifier = '{:03}'.format(identifier)
|
identifier = '{:03}'.format(int(identifier))
|
||||||
region = self.__determine_region(identifier)
|
region = self.__determine_region(identifier)
|
||||||
path = self.__determine_folder(identifier) + "/" + identifier + ".png"
|
path = self.__determine_folder(identifier) + "/" + identifier + ".png"
|
||||||
pokemon = Pokemon(identifier, name, region, path)
|
pokemon = Pokemon(identifier, name, region, path)
|
||||||
|
|
Loading…
Reference in a new issue