Mercurial > public > mercurial-scm > hg
comparison mercurial/sshserver.py @ 11596:47ca289a3a08
ssh: drop some old imports
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 15 Jul 2010 15:06:45 -0500 |
parents | 67863f9d805f |
children | 83070a9cd526 |
comparison
equal
deleted
inserted
replaced
11595:368cd5325348 | 11596:47ca289a3a08 |
---|---|
5 # | 5 # |
6 # This software may be used and distributed according to the terms of the | 6 # This software may be used and distributed according to the terms of the |
7 # GNU General Public License version 2 or any later version. | 7 # GNU General Public License version 2 or any later version. |
8 | 8 |
9 from i18n import _ | 9 from i18n import _ |
10 from node import bin, hex | 10 import util, hook, wireproto |
11 import streamclone, util, hook, pushkey, wireproto | 11 import os, sys |
12 import os, sys, tempfile, urllib, copy | |
13 | 12 |
14 class sshserver(object): | 13 class sshserver(object): |
15 def __init__(self, ui, repo): | 14 def __init__(self, ui, repo): |
16 self.ui = ui | 15 self.ui = ui |
17 self.repo = repo | 16 self.repo = repo |