mirror of
https://github.com/samba-team/samba.git
synced 2025-03-27 22:50:26 +03:00
samba_abi.py: avoid inefficient string concatenations
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
dd0837c9a8
commit
2291679e2b
@ -72,9 +72,7 @@ def parse_sigs(sigs, abi_match):
|
||||
|
||||
def save_sigs(sig_file, parsed_sigs):
|
||||
'''save ABI signatures to a file'''
|
||||
sigs = ''
|
||||
for s in sorted(parsed_sigs.keys()):
|
||||
sigs += '%s: %s\n' % (s, parsed_sigs[s])
|
||||
sigs = "".join('%s: %s\n' % (s, parsed_sigs[s]) for s in sorted(parsed_sigs.keys()))
|
||||
return samba_utils.save_file(sig_file, sigs, create_dir=True)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user