UnknownProgrammer
UnknownProgrammer
> The first thing that popped into my mind was wpa_supplicant [...] Good guess, restarting wpa_supplicant.service lets the device reconnect. Since Canonical has plans to replace wpa_supplicant with iwd in...
@hayd I think the coders intention was to do something like the following with python 2 in mind: #!/usr/bin/env python # -*- coding: iso-8859-1 -*- # define text s_iso88591 =...
@hayd the example is Python 2 only code ### In Python 2: we have two text types: `str` and `unicode` which is equivalent to the Python 3 str • a...
@hayd The picture in #10 shows me that the latest python plugin isn't installed. The last time I checked it was updated separately and nobody mentioned the version of the...
@hayd @kenny-evitt This PR creates an error in LT with Python 2 and the following code: # -*- coding: utf-8 -*- s="äüö" print(s) Error: Traceback (most recent call last): File...
@hayd You want me to try this: # -*- coding: utf-8 -*- s=unicode("äüö") print(s) Or that: # -*- coding: utf-8 -*- s=unicode("äüö","utf8") print(s) Same error, both times. > The bit...
@kenny-evitt That's nicer, I just wanted it to work with python 3 without removing someone's work. I posted my opinion on #30