From 2b484af4d8a86d5231afe6f8315c698aa3da8abd Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Thu, 6 Apr 2023 00:00:36 +0200 Subject: [PATCH] fix quotes --- .../templates/{{ cookiecutter.project_name }}-ios/main.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy_ios/tools/templates/{{ cookiecutter.project_name }}-ios/main.m b/kivy_ios/tools/templates/{{ cookiecutter.project_name }}-ios/main.m index 5818b250..252b30a2 100644 --- a/kivy_ios/tools/templates/{{ cookiecutter.project_name }}-ios/main.m +++ b/kivy_ios/tools/templates/{{ cookiecutter.project_name }}-ios/main.m @@ -167,8 +167,8 @@ void load_custom_builtin_importer() { " self.buffer = ""\n" \ " def write(self, chunk):\n" \ " self.buffer += chunk\n" \ - " if "\n" in self.buffer:\n" \ - " lines = self.buffer.split("\n")\n" \ + " if '\n' in self.buffer:\n" \ + " lines = self.buffer.split('\n')\n" \ " for line in lines[:-1]:\n" \ " nslog(line)\n" \ " self.buffer = lines[-1]\n" \