robotframework-libtoc 1.4.1__tar.gz → 1.4.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/PKG-INFO +1 -1
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/pyproject.toml +1 -1
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/robotframework_libtoc/libtoc.py +1 -1
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/robotframework_libtoc/toc_template.html +1 -0
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/LICENSE +0 -0
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/README.md +0 -0
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/robotframework_libtoc/__init__.py +0 -0
- {robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/robotframework_libtoc/homepage_template.html +0 -0
|
@@ -113,7 +113,7 @@ def add_files_from_folder(folder, base_dir_path, root=True):
|
|
|
113
113
|
result_str += """<div class="collapsible_content">
|
|
114
114
|
"""
|
|
115
115
|
|
|
116
|
-
for item in os.listdir(folder):
|
|
116
|
+
for item in sorted(os.listdir(folder)):
|
|
117
117
|
item_path = os.path.abspath(os.path.join(folder, item))
|
|
118
118
|
if item.endswith(".html"):
|
|
119
119
|
name_without_ext = os.path.splitext(item)[0]
|
|
File without changes
|
|
File without changes
|
{robotframework_libtoc-1.4.1 → robotframework_libtoc-1.4.3}/robotframework_libtoc/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|