Fix double apostrophe (#75)

pull/78/head
Disconnect3d 6 years ago committed by GitHub
parent c40776121a
commit 56fc136988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      slither/detectors/naming_convention/naming_convention.py

@ -101,7 +101,7 @@ class NamingConvention(AbstractDetector):
else:
correct_naming = self.is_mixed_case_with_underscore(argument.name)
if not correct_naming:
info = "Parameter '{}' is not in mixedCase, Contract: '{}', Function: '{}'' " \
info = "Parameter '{}' is not in mixedCase, Contract: '{}', Function: '{}' " \
.format(argument.name, argument.name, contract.name)
self.log(info)

Loading…
Cancel
Save