comparison mercurial/sshserver.py @ 8312:b87a50b7125c

separate import lines from mercurial and general python modules
author Simon Heimberg <simohe@besonet.ch>
date Tue, 28 Apr 2009 17:40:46 +0200
parents 46293a0c7e9f
children e3495c399006
comparison
equal deleted inserted replaced
8311:e0eb03bfa5af 8312:b87a50b7125c
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, incorporated herein by reference. 7 # GNU General Public License version 2, incorporated herein by reference.
8 8
9 from i18n import _ 9 from i18n import _
10 from node import bin, hex 10 from node import bin, hex
11 import os, streamclone, sys, tempfile, util, hook 11 import streamclone, util, hook
12 import os, sys, tempfile
12 13
13 class sshserver(object): 14 class sshserver(object):
14 def __init__(self, ui, repo): 15 def __init__(self, ui, repo):
15 self.ui = ui 16 self.ui = ui
16 self.repo = repo 17 self.repo = repo