Werner Beroux

Results 165 comments of Werner Beroux

Tried linked to a full X11, same issue even though `curl` is run also from within the container. Tried on two machines just in case. Running this give the same...

Tracking down: ``` $ curl -L https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi -o python.msi $ wine msiexec -i python.msi -quiet -qn -norestart $ wine c:/Python27/python.exe >>> import urllib2 >>> urllib2.urlopen('https://google.com/').read() ``` Gives an error: `ValueError:...

I was kind of hoping that wine would use the linux certificates but you're right it doesn't seem to. Which is why I tried installing IE as it's likely that...

Yes it does look like a pure Wine issue. On Thu, 11 Feb 2016 at 21:38 Jan Suchotzki [email protected] wrote: > Sounds reasonable! Sorry, but my knowledge about using python...

There is something that could be done, which is to update Wine to latest version and add Docker tags.

For example: `1`, `1.6`, `1.6.2` like the official packages. You can use regex to built them automatically from tags See https://github.com/docker/hub-feedback/issues/501

It's just about retrieving and installing a hardcoded version (here it's about getting a snapshop of a tagged version for example and not latest release), and doing a `git tag...

It'd look for example like: File `_mycommand` for ZSH: ``` #compdef mycommand _mycommand() { # Those lines are to enable an action of the form '->state'. local curcontext="$curcontext" local state...

I'm having the same issue with normal inheritance, also after upgrading.

Fixed by loading `modeltranslation` before `django.contrib.admin` in `INSTALLED_APPS`.