Compare commits
2 commits
b8eda046dd
...
641dd19b8d
| Author | SHA1 | Date | |
|---|---|---|---|
| 641dd19b8d | |||
| 21d968fbac |
1 changed files with 4 additions and 1 deletions
|
|
@ -156,6 +156,9 @@ def main():
|
|||
if args.no_git:
|
||||
return
|
||||
|
||||
if repo.git.diff(name_only=True) == "":
|
||||
return
|
||||
|
||||
repo.git.add("*")
|
||||
repo.index.commit(datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
|
||||
origin = repo.remote(name="origin")
|
||||
|
|
@ -347,7 +350,7 @@ def get_functions(elem):
|
|||
if grandchild.text.strip() != ""
|
||||
)
|
||||
out.append((current_heading, sorted(current_body)))
|
||||
return out
|
||||
return sorted(out)
|
||||
|
||||
|
||||
def parse_speech(page):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue