We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3d7b3 commit 1a6d9f6Copy full SHA for 1a6d9f6
adb/adb_debug.py
@@ -37,7 +37,7 @@
37
def GetRSAKwargs():
38
if FLAGS.rsa_key_path:
39
return {
40
- 'rsa_keys': [adb.M2CryptoSigner(os.path.expanduser(path))
+ 'rsa_keys': [adb_commands.M2CryptoSigner(os.path.expanduser(path))
41
for path in FLAGS.rsa_key_path],
42
'auth_timeout_ms': int(FLAGS.auth_timeout_s * 1000.0),
43
}
@@ -46,8 +46,8 @@ def GetRSAKwargs():
46
47
def main(argv):
48
common_cli.StartCli(
49
- argv, adb.AdbCommands.ConnectDevice,
50
- list_callback=adb.AdbCommands.Devices, **GetRSAKwargs())
+ argv, adb_commands.AdbCommands.ConnectDevice,
+ list_callback=adb_commands.AdbCommands.Devices, **GetRSAKwargs())
51
52
53
if __name__ == '__main__':
0 commit comments