Thomas Coenen

Results 21 issues of Thomas Coenen

See the screenshot, the amount column is joined into the part column. Any clues? ![Bildschirmfoto 2021-09-06 um 18 30 50](https://user-images.githubusercontent.com/385566/132245229-409dce59-e796-4b67-a260-9e60a7b8f61c.png) 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: ![bildschirmfoto 2015-11-10 um 16 45 38](https://cloud.githubusercontent.com/assets/385566/11066965/976f2f68-87ca-11e5-9168-d4d766c9b162.png)

question

## 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",...

bug
Discussion

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...

enhancement

## 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...

enhancement

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...