util: move BIP32 address related functions

This commit is contained in:
Roman Zeyde
2016-08-11 22:30:59 +03:00
parent 5d0b0f65d3
commit c4bbac0e77
5 changed files with 64 additions and 61 deletions

View File

@@ -7,14 +7,14 @@ import re
import subprocess
import sys
from . import client, formats, protocol, server
from . import client, formats, protocol, server, util
log = logging.getLogger(__name__)
def ssh_args(label):
"""Create SSH command for connecting specified server."""
identity = client.string_to_identity(label, identity_type=dict)
identity = util.string_to_identity(label, identity_type=dict)
args = []
if 'port' in identity: