]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/tools/collect_os_info.py
Correct some typos
[nominatim.git] / nominatim / tools / collect_os_info.py
index c8fda908c731324e28eb074e9fc0a31bd99f574e..779c55c7b00d835fd26eb6287674e8d1115e89c5 100644 (file)
@@ -78,7 +78,7 @@ def from_file_find_line_portion(
     filename: str, start: str, sep: str, fieldnum: int = 1
 ) -> Optional[str]:
     """open filename, finds the line starting with the 'start' string.
-    Splits the line using seperator and returns a "fieldnum" from the split."""
+    Splits the line using separator and returns a "fieldnum" from the split."""
     with open(filename, encoding='utf8') as file:
         result = ""
         for line in file: