We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eccd3e commit e6ba31fCopy full SHA for e6ba31f
.gdbinit
@@ -1185,7 +1185,7 @@ class Source(Dashboard.Module):
1185
if style_changed or file_name != self.file_name or ts and ts > self.ts:
1186
try:
1187
# reload the source file if changed
1188
- with io.open(file_name, errors='ignore') as source_file:
+ with io.open(file_name, errors='replace') as source_file:
1189
highlighter = Beautifier(file_name, self.tab_size)
1190
self.highlighted = highlighter.active
1191
source = highlighter.process(source_file.read())
0 commit comments