Skip to content

Commit 1a6d9f6

Browse files
author
Max Borghino
committed
Fix minor namespace breakage
1 parent cd3d7b3 commit 1a6d9f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adb/adb_debug.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
def GetRSAKwargs():
3838
if FLAGS.rsa_key_path:
3939
return {
40-
'rsa_keys': [adb.M2CryptoSigner(os.path.expanduser(path))
40+
'rsa_keys': [adb_commands.M2CryptoSigner(os.path.expanduser(path))
4141
for path in FLAGS.rsa_key_path],
4242
'auth_timeout_ms': int(FLAGS.auth_timeout_s * 1000.0),
4343
}
@@ -46,8 +46,8 @@ def GetRSAKwargs():
4646

4747
def main(argv):
4848
common_cli.StartCli(
49-
argv, adb.AdbCommands.ConnectDevice,
50-
list_callback=adb.AdbCommands.Devices, **GetRSAKwargs())
49+
argv, adb_commands.AdbCommands.ConnectDevice,
50+
list_callback=adb_commands.AdbCommands.Devices, **GetRSAKwargs())
5151

5252

5353
if __name__ == '__main__':

0 commit comments

Comments
 (0)