From 9cfb06c7367ef9454b1b8650d236842514f3d6b3 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Tue, 12 Nov 2019 09:06:22 -0800 Subject: [PATCH] Even "nicer". --- thun/dump-asm.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/thun/dump-asm.py b/thun/dump-asm.py index b1466a9..c0114cd 100644 --- a/thun/dump-asm.py +++ b/thun/dump-asm.py @@ -1,5 +1,2 @@ -s = ' '.join('''\ -'''.splitlines()).replace('), ', '),\n') - -with open('./asm-dump.txt', 'wb') as f: - f.write(s) \ No newline at end of file +with open('./thun/asm-dump.txt', 'wb') as f: f.write(' '.join('''\ +'''.splitlines()).replace('), ', '),\n')) \ No newline at end of file