Fix a few typos

pull/139/head
Peter Hutterer 2019-07-11 08:52:14 +10:00
parent caa52e0c51
commit 8cf85c3e5d
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ Installation
$> tuhi $> tuhi
``` ```
TUHI requires Python v3.6 or above. Tuhi requires Python v3.6 or above.
Units used by this interface Units used by this interface
---------------------------- ----------------------------

View File

@ -595,8 +595,8 @@ class Fetcher(Worker):
if dimensions == [0, 0]: if dimensions == [0, 0]:
width, height = 100, 100 width, height = 100, 100
else: else:
# Original diemnsions are too big for SVG Standard # Original dimensions are too big for SVG Standard
# so we nomalize them # so we normalize them
width, height = dimensions[0] / 100, dimensions[1] / 100 width, height = dimensions[0] / 100, dimensions[1] / 100
if self.orientation in ['Portrait', 'Reverse-Portrait']: if self.orientation in ['Portrait', 'Reverse-Portrait']: