mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixed linting
Fix for "String format call with un-indexed curly braces".
This commit is contained in:
parent
08fba98735
commit
96f39a420b
1 changed files with 1 additions and 1 deletions
|
@ -966,7 +966,7 @@ class DaemonMixInTestCase(TestCase):
|
|||
self.mixin._mixin_before_exit()
|
||||
assert os_unlink.call_count == 1
|
||||
self.mixin.info.assert_called_with(
|
||||
'PIDfile could not be deleted: {}'.format(self.pid))
|
||||
'PIDfile could not be deleted: {0}'.format(self.pid))
|
||||
|
||||
# Hide the class from unittest framework when it searches for TestCase classes in the module
|
||||
del LogSettingsParserTests
|
||||
|
|
Loading…
Add table
Reference in a new issue