Skip to content

Commit

Permalink
fix: Correct indentation for document creation in Outline (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatamutyala authored Nov 22, 2024
1 parent 46e1da5 commit 76af0bb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ def main():
logger.debug(f"Markdown content: {markdown_content}")
logger.info(f"Generated Markdown for AWS ORG: {aws_account_name}")

# Create new document in Outline
GetOutlineClient.create_document(parent_id, aws_account_name, markdown_content)
logger.info(f"Created {aws_account_name} doc successfully under parent doc: {GETOUTLINE_DOCUMENT_ID}")
# Create new document in Outline
GetOutlineClient.create_document(parent_id, aws_account_name, markdown_content)
logger.info(f"Created {aws_account_name} doc successfully under parent doc: {GETOUTLINE_DOCUMENT_ID}")

logger.info("Script execution completed successfully.")
except Exception as e:
logger.error(f"Script execution failed: {e}")
Expand Down

0 comments on commit 76af0bb

Please sign in to comment.