From 7f0e954708669f94c87c3637df947e4ed66139b0 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Mon, 16 Oct 2023 16:54:35 -0700 Subject: [PATCH] Fix overzealous find/replace for line breaks --- .../manage-account-settings/disable-master-key-pair.md | 1 - content/tutorials/quickstart/py-transfer-nfts.md | 1 - .../use-escrows/send-a-time-held-escrow.md | 1 - tool/filter_make_indexes.py | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/content/tutorials/manage-account-settings/disable-master-key-pair.md b/content/tutorials/manage-account-settings/disable-master-key-pair.md index 553ee2b249..f27e456043 100644 --- a/content/tutorials/manage-account-settings/disable-master-key-pair.md +++ b/content/tutorials/manage-account-settings/disable-master-key-pair.md @@ -482,7 +482,6 @@ if ((lsfDisableMaster & acct_flags) === lsfDisableMaster) { ```python # Assuming the JSON-RPC response above is parsed from JSON - # and saved as the variable account_info_response lsfDisableMaster = 0x00100000 acct_flags = account_info_response["result"]["account_data"]["Flags"] diff --git a/content/tutorials/quickstart/py-transfer-nfts.md b/content/tutorials/quickstart/py-transfer-nfts.md index 5feb10a968..6de81b1bcd 100644 --- a/content/tutorials/quickstart/py-transfer-nfts.md +++ b/content/tutorials/quickstart/py-transfer-nfts.md @@ -1019,6 +1019,5 @@ btn_op_cancel_offer = tk.Button(master=frm_form, text="Cancel Offer", btn_op_cancel_offer.grid(row=16, column=3, sticky="nsew") # Start the application - window.mainloop() ``` \ No newline at end of file diff --git a/content/tutorials/use-specialized-payment-types/use-escrows/send-a-time-held-escrow.md b/content/tutorials/use-specialized-payment-types/use-escrows/send-a-time-held-escrow.md index f5ee3a7470..14bd90b3c3 100644 --- a/content/tutorials/use-specialized-payment-types/use-escrows/send-a-time-held-escrow.md +++ b/content/tutorials/use-specialized-payment-types/use-escrows/send-a-time-held-escrow.md @@ -35,7 +35,6 @@ release_date_utc = datetime.datetime(2017,11,13,0,0,0,tzinfo=datetime.timezone.u release_date_ripple = int(release_date_utc.timestamp()) - 946684800 print(release_date_ripple) # 563846400 - ``` #}--> diff --git a/tool/filter_make_indexes.py b/tool/filter_make_indexes.py index 28db4d2bc0..8303f9821f 100644 --- a/tool/filter_make_indexes.py +++ b/tool/filter_make_indexes.py @@ -99,4 +99,4 @@ def filter_soup(soup, currentpage={}, config={}, pages=[], logger=None, **kwargs #print(fcontents) #print("\n\n\n") - exit() \ No newline at end of file + exit()