From c5d8d235d6d8690eac431236172a442daa162392 Mon Sep 17 00:00:00 2001 From: "Cristian O. Balan" Date: Mon, 4 Sep 2023 19:23:33 +0100 Subject: [PATCH] Update README.md - Fix Base46 input example Fixing Base46 input example when the following error occurs: ```line 4 print mysid ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?``` --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 936b350..390fc12 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ Python library to convert Windows [SIDs](https://en.wikipedia.org/wiki/Security_Identifier) +## Install + +E.g: +`python3 setup.py install` + ## Example String input @@ -22,7 +27,7 @@ Base46 input import sid mysid = sid.sid('AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdwCRwBAA==', sid.SID_BASE64) -print mysid +print(mysid) ``` Output