Fix XML reading; update images.
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 197 KiB |
BIN
doc/grid.png
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 46 KiB |
BIN
doc/time.png
Before Width: | Height: | Size: 380 KiB After Width: | Height: | Size: 413 KiB |
BIN
doc/trees.png
Before Width: | Height: | Size: 246 KiB After Width: | Height: | Size: 171 KiB |
BIN
doc/user.png
Before Width: | Height: | Size: 376 KiB After Width: | Height: | Size: 408 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 88 KiB |
|
@ -150,7 +150,7 @@ def get_value(key: str, text: str):
|
|||
if key + '="' in text:
|
||||
start_index: int = text.find(key + '="') + 2
|
||||
end_index: int = start_index + len(key)
|
||||
value = text[end_index:text.find('"', end_index + 2)]
|
||||
value = text[end_index:text.find('"', end_index)]
|
||||
return value
|
||||
|
||||
|
||||
|
|