From c490a8daee2f55a50c5796526a3cbc1ff867e0a3 Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Fri, 6 Mar 2020 10:45:18 +0100 Subject: [PATCH] Quickfix critical tutorial typo In tutorial code snippet fix a call to repository.mark_dirty that passes a non-existing bin role name raising: "tuf.exceptions.UnknownRoleError: Role name does not exist: 90-7" Signed-off-by: Lukas Puehringer --- docs/TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md index 557b5d66..6057935c 100644 --- a/docs/TUTORIAL.md +++ b/docs/TUTORIAL.md @@ -662,7 +662,7 @@ Adding a verification key that has already been used. [repeated 32x] # Mark roles for metadata update (see #964, #958) >>> repository.mark_dirty(['00-07', '08-0f', '10-17', '18-1f', '20-27', '28-2f', ... '30-37', '38-3f', '40-47', '48-4f', '50-57', '58-5f', '60-67', '68-6f', -... '70-77', '78-7f', '80-87', '88-8f', '90-7', '98-9f', 'a0-a7', 'a8-af', +... '70-77', '78-7f', '80-87', '88-8f', '90-97', '98-9f', 'a0-a7', 'a8-af', ... 'b0-b7', 'b8-bf', 'c0-c7', 'c8-cf', 'd0-d7', 'd8-df', 'e0-e7', 'e8-ef', ... 'f0-f7', 'f8-ff', 'snapshot', 'timestamp', 'unclaimed'])