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 ac1d245 commit 97258c6Copy full SHA for 97258c6
tools/empath-split.py
@@ -317,6 +317,8 @@ def main():
317
with tempfile.NamedTemporaryFile(suffix=".manifest", mode='w+', delete=not args.preserve_manifest) as f:
318
manifest = f.name
319
for i, (module, paths) in enumerate(module_to_paths.items()):
320
+ if i != 0: # Unless we are the first entry add a newline separator
321
+ f.write('\n')
322
funcs = set()
323
for path in paths:
324
if not path_to_funcs[path]:
0 commit comments