| Conditions | 1 |
| Total Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | import os.path |
||
| 11 | def img_path(instance, filename): |
||
| 12 | from django.utils.crypto import get_random_string |
||
| 13 | extension = os.path.splitext(filename)[1] |
||
| 14 | return "img/" + get_random_string(length=150, allowed_chars='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_') + extension |
||
| 15 | |||
| 43 |