Thomas Coenen
Thomas Coenen
See the screenshot, the amount column is joined into the part column. Any clues?  My definitions: ```python class BOMPartInline(SortableInlineAdminMixin, admin.TabularInline): model = BOMPart fields...
As you can see in the screenshot the first pair of braces is highlighted, but all braces below `{% %}` aren't: 
## Type of changes - Bug fix - Tests ## Checklist - [x] I've run the latest [black](https://github.com/ambv/black) with default args on new code. - [x] I've updated CHANGELOG.md and...
As discussed in #542 a file is deleted in some cases when moved onto itself. Working example: ```python from fs import open_fs with open_fs("mem://") as currdir: currdir.writetext("test.txt", "Content") currdir.move("test.txt", "test.txt",...
I think `os.expandvars` needs to be called before `abspath` in the opener. Example: ```python from fs import open_fs >>> open_fs("~") OSFS('/Users/tf') >>> open_fs("$HOME") ...[snip]... fs.errors.CreateFailed: root path '/Users/tf/Desktop/Users/tf' does not...
## Type of changes - Other ## Checklist - [x] I've run the latest [black](https://github.com/ambv/black) with default args on new code. - [x] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate....
Hi! I'd like to use PyInquirer for some scripts which should be in German. It would be great if there was a configuration option to change the messages and accepted...
This action appends a text to a given file. This might be helpful for #155 in the long run, when a `text_contains` filter is done.
Adds an action to send a file as an email. One can use template variables in subject and body. As the simulation output for this action does not fit into...
Hello, I trying to adapt the edge branch of g2core to my Arduino Due shield which controls four stepper driver (St L6474) via SPI. I found the Motate submodule is...