Fix XML reading; update images.

This commit is contained in:
Sergey Vartanov 2020-09-10 00:55:15 +03:00
parent 7bfbf32697
commit 50191f63d1
7 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 KiB

After

Width:  |  Height:  |  Size: 197 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 380 KiB

After

Width:  |  Height:  |  Size: 413 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 246 KiB

After

Width:  |  Height:  |  Size: 171 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 KiB

After

Width:  |  Height:  |  Size: 408 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Before After
Before After

View file

@ -150,7 +150,7 @@ def get_value(key: str, text: str):
if key + '="' in text: if key + '="' in text:
start_index: int = text.find(key + '="') + 2 start_index: int = text.find(key + '="') + 2
end_index: int = start_index + len(key) 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 return value