Skip to content

Commit

Permalink
Tweaks for issue #16
Browse files Browse the repository at this point in the history
  • Loading branch information
quarnster committed Feb 5, 2013
1 parent 5c38e0c commit 5b45449
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.creole
Expand Up @@ -6,6 +6,7 @@ Please go [[https://github.com/quarnster/ADBView/issues?sort=created&direction=d

=== Prerequisites ===
# The Android SDK should be installed, and ADB should be in your path.
# If you want to connect to the emulator on Windows, you'll have to [enable telnet](http://social.technet.microsoft.com/wiki/contents/articles/910.enabling-telnet-client-in-windows-7-en-us.aspx). See #16.
=== Installation ===
# The easiest way to install this plugin is via the excellent Package Control Plugin
Expand Down
2 changes: 1 addition & 1 deletion adbview.py
Expand Up @@ -436,7 +436,7 @@ def run(self):
# get name
product = "Unknown" # should never actually see this
if device.startswith("emulator"):
port = device.rsplit("-")[-1]
port = int(device.rsplit("-")[-1])
t = telnetlib.Telnet("localhost", port)
t.read_until("OK", 1000)
t.write("avd name\n")
Expand Down

0 comments on commit 5b45449

Please sign in to comment.