Skip to content

Commit

Permalink
Update README.md - Fix Base46 input example
Browse files Browse the repository at this point in the history
Fixing Base46 input example when the following error occurs:
```line 4
    print mysid
    ^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?```
  • Loading branch information
oviliz authored Sep 4, 2023
1 parent e52d9db commit c5d8d23
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -22,7 +27,7 @@ Base46 input
import sid

mysid = sid.sid('AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdwCRwBAA==', sid.SID_BASE64)
print mysid
print(mysid)
```

Output
Expand Down

0 comments on commit c5d8d23

Please sign in to comment.