| Index: adb/contrib/adb_commands_safe.py
|
| diff --git a/adb/contrib/adb_commands_safe.py b/adb/contrib/adb_commands_safe.py
|
| index cf149405288eef62aa96cb37f4ac7780c3d09eed..54944419a6f6c5aff97a69783c6faa40bf449f39 100644
|
| --- a/adb/contrib/adb_commands_safe.py
|
| +++ b/adb/contrib/adb_commands_safe.py
|
| @@ -77,7 +77,8 @@ def KillADB():
|
|
|
| culprits = '\n'.join(p for p in processes if 'adb' in p)
|
| _LOG.error(
|
| - 'KillADB() failed after %d attempts. Potential culprits: %s' % culprits)
|
| + 'KillADB() failed after %d attempts. Potential culprits: %s',
|
| + attempts, culprits)
|
|
|
|
|
| class AdbCommandsSafe(object):
|
|
|