Skip to content

Commit 2144ee7

Browse files
authored
Update README.md
1 parent d7ca7a7 commit 2144ee7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ The library reads and provides strings. If you need for example a boolean, it is
132132
Example:
133133

134134
```python
135-
import distutils.util
136-
DEBUG = bool(distutils.util.strtobool(os.getenv('DEBUG', 'True')))
135+
from distutils.util import strtobool
136+
DEBUG = bool(strtobool(os.getenv('DEBUG', 'True')))
137137
```
138138

139139

0 commit comments

Comments
 (0)