# HG changeset patch # User Matt Mackall # Date 2010-07-15 20:06:45 # Node ID 47ca289a3a08516dd9b05d5ebe88aee07cf42d89 # Parent 368cd5325348ca71a2de3f54a0b40f77c19da67d ssh: drop some old imports diff --git a/mercurial/sshrepo.py b/mercurial/sshrepo.py --- a/mercurial/sshrepo.py +++ b/mercurial/sshrepo.py @@ -5,10 +5,9 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -from node import bin, hex from i18n import _ -import repo, util, error, encoding, wireproto -import re, urllib +import repo, util, error, wireproto +import re class remotelock(object): def __init__(self, repo): diff --git a/mercurial/sshserver.py b/mercurial/sshserver.py --- a/mercurial/sshserver.py +++ b/mercurial/sshserver.py @@ -7,9 +7,8 @@ # GNU General Public License version 2 or any later version. from i18n import _ -from node import bin, hex -import streamclone, util, hook, pushkey, wireproto -import os, sys, tempfile, urllib, copy +import util, hook, wireproto +import os, sys class sshserver(object): def __init__(self, ui, repo):