Removed unnecessary newlines

This commit is contained in:
Nex 2022-01-30 04:11:46 +01:00
parent 5e7c5727af
commit 001c2998a5
1 changed files with 2 additions and 4 deletions

View File

@ -25,12 +25,10 @@ class DumpsysFull(AndroidExtraction):
stats = self._adb_command("dumpsys")
if self.output_folder:
stats_path = os.path.join(self.output_folder,
"dumpsys.txt")
stats_path = os.path.join(self.output_folder, "dumpsys.txt")
with open(stats_path, "w", encoding="utf-8") as handle:
handle.write(stats)
log.info("Full dumpsys output stored at %s",
stats_path)
log.info("Full dumpsys output stored at %s", stats_path)
self._adb_disconnect()