Suppress unicode error in squash_python (due to formatting os.environ bytes into unicode str)
This commit is contained in:
parent
8a421085a1
commit
2cda5f36aa
@ -1022,7 +1022,7 @@ def main(argv):
|
|||||||
Settings.reportCrashes.addObserver(client, '_enabled', _reportingChanged)
|
Settings.reportCrashes.addObserver(client, '_enabled', _reportingChanged)
|
||||||
client.reportErrors()
|
client.reportErrors()
|
||||||
client.hook()
|
client.hook()
|
||||||
except ImportError:
|
except (ImportError, UnicodeError) as e:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user