Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

qscilib: handle character encoding in fileEditor

Changeset 33d8c680668a

Parent 96238a9723f7

by André Sintzoff

Changes to one file · Browse files at 33d8c680668a Showing diff from parent 96238a9723f7 Diff from another changeset...

 
440
441
442
443
 
444
445
446
 
440
441
442
 
443
444
445
446
@@ -440,7 +440,7 @@
  s = QSettings()   ret = QDialog.Rejected   try: - contents = open(filename, 'rb').read() + contents = hglib.tounicode(open(filename, 'rb').read())   dialog.setWindowTitle(filename)   geomname = 'editor-geom'   editor.setText(contents)