mirror of
https://github.com/samba-team/samba.git
synced 2025-03-27 22:50:26 +03:00
dynconfig/wscript: python3 fix string.find instance
string.find doesn't exist in python3. Instead use the 'find' method of the string instance itself Signed-off-by: Noel Power <noel.power@suse.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
28ecdd9777
commit
166d119d48
@ -46,7 +46,7 @@ class SambaIndentedHelpFormatter (optparse.IndentedHelpFormatter):
|
||||
result.append(opts)
|
||||
if option.help:
|
||||
help_text = self.expand_default(option)
|
||||
if string.find(help_text, '\n') == -1:
|
||||
if help_text.find('\n') == -1:
|
||||
help_lines = textwrap.wrap(help_text, self.help_width)
|
||||
else:
|
||||
help_lines = help_text.splitlines()
|
||||
|
Loading…
x
Reference in New Issue
Block a user