Skip to content

Commit c5d8d23

Browse files
authored
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(...)?```
1 parent e52d9db commit c5d8d23

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
Python library to convert Windows [SIDs](https://en.wikipedia.org/wiki/Security_Identifier)
44

5+
## Install
6+
7+
E.g:
8+
`python3 setup.py install`
9+
510
## Example
611

712
String input
@@ -22,7 +27,7 @@ Base46 input
2227
import sid
2328

2429
mysid = sid.sid('AQUAAAAAAAUVAAAAoGXPfnhLm1/nfIdwCRwBAA==', sid.SID_BASE64)
25-
print mysid
30+
print(mysid)
2631
```
2732

2833
Output

0 commit comments

Comments
 (0)