1
0
Fork 0

Try to fix the git repo issue

This commit is contained in:
Luca Beltrame 2015-06-07 15:01:46 +02:00
parent 57eb9fce34
commit b1861037c0

View file

@ -38,7 +38,8 @@ def hash_file(filename: Path) -> str:
def perform_commit(filepath: Path, title: str=None,
draft: bool=False) -> None:
repo = Repo("./") # FIXME
import os
repo = Repo(os.curdir) # FIXME
repo.index.add(str(filepath))
if not draft:
@ -86,7 +87,7 @@ def create_new_post(title: str, categories: list=None, tags: list=None,
else:
final_path = Path("_drafts") / filename
with tempfile.NamedTemporaryFile(mode="wt") as temp:
with tempfile.NamedTemporaryFile(mode="wt", suffix=".md") as temp:
temp_path = Path(temp.name)
@ -147,4 +148,4 @@ def main():
if __name__ == "__main__":
main()
main()