Changes between Initial Version and Version 1 of Ticket #4017
- Timestamp:
- 01/11/20 11:35:48 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4017
- Property Component Default → wxGUI
- Property Keywords python3 added
- Property Milestone → 7.8.3
-
Ticket #4017 – Description
initial v1 1 1 After installing grass 7.8.3 on debian buster my python2 scripts does not work anymore. Error message : 2 3 {{{ 4 2 5 Traceback (most recent call last): 3 6 File "/usr/local/grass78/gui/wxpython/gui_core/forms.py", … … 104 107 : 105 108 name 'unicode' is not defined 109 }}} 110 106 111 107 112 ---------------------- 108 If I add # -*- coding:UTF-8 -*- on first line in /usr/local/grass78/etc/python/grass/lib/gis.py and /usr/local/grass78/etc/python/grass/lib/raster.py my scripts seem to work (gui dispalyed) 113 If I add 114 115 {{{ 116 # -*- coding:UTF-8 -*- 117 }}} 118 119 on first line in /usr/local/grass78/etc/python/grass/lib/gis.py and /usr/local/grass78/etc/python/grass/lib/raster.py my scripts seem to work (gui dispalyed) 109 120 110 121 my LOCAL is LANG=fr_FR.UTF-8