Jakub Dolejšek

Results 4 comments of Jakub Dolejšek

quickfix that fixed that for me - change this line: https://github.com/DamnWidget/anaconda/blob/master/anaconda_server/commands/goto.py#L36 from: `(i.full_name, i.module_path, i.line, i.column + 1)` to: `(i.full_name, str(i.module_path), i.line, i.column + 1)`

maybe @SebCorbin could merge and release?

I had the similar need and this worked for me: ``` # myproject/thumbnail_backend.py from pathlib import Path from django.utils.text import slugify from sorl.thumbnail.base import EXTENSIONS, ThumbnailBackend from sorl.thumbnail.conf import settings...