mirror of
https://github.com/tiennm99/serena.git
synced 2026-08-05 10:24:26 +00:00
Merge pull request #110 from shyraptor/utf_encoding
specified utf-8 encoding in symbol.py
This commit is contained in:
@@ -297,10 +297,11 @@ class SymbolManager:
|
||||
yield
|
||||
root_path = self.lang_server.language_server.repository_root_path
|
||||
abs_path = os.path.join(root_path, relative_path)
|
||||
with open(abs_path, "w") as f:
|
||||
with open(abs_path, "w", encoding="utf-8") as f:
|
||||
f.write(file_buffer.contents)
|
||||
self.agent.mark_file_modified(relative_path)
|
||||
|
||||
|
||||
@contextmanager
|
||||
def _edited_symbol_location(self, location: SymbolLocation) -> Iterator[Symbol]:
|
||||
symbol = self.find_by_location(location)
|
||||
|
||||
Reference in New Issue
Block a user