pull/238/head
Josselin 5 years ago
parent ab40693de7
commit 1450d602bf
  1. 2
      setup.py
  2. 2
      slither/tools/slither_format/slither_format.py

@ -16,7 +16,7 @@ setup(
'slither = slither.__main__:main', 'slither = slither.__main__:main',
'slither-check-upgradeability = slither.tools.upgradeability.__main__:main', 'slither-check-upgradeability = slither.tools.upgradeability.__main__:main',
'slither-find-paths = slither.tools.possible_paths.__main__:main', 'slither-find-paths = slither.tools.possible_paths.__main__:main',
'slither-simil = slither.tools.similarity.__main__:main' 'slither-simil = slither.tools.similarity.__main__:main',
'slither-format = slither.tools.slither_format.__main__:main' 'slither-format = slither.tools.slither_format.__main__:main'
] ]
} }

@ -131,7 +131,7 @@ def apply_detector_results(slither, detector_results):
else: else:
raise FormatError(result['check'] + "detector not supported yet.") raise FormatError(result['check'] + "detector not supported yet.")
except FormatImpossible as e: except FormatImpossible as e:
logger.info(f'Impossible to patch:\n{result["description"]}\nReason: {e}') logger.info(f'\nImpossible to patch:\n\t{result["description"]}\t{e}')
# endregion # endregion

Loading…
Cancel
Save