Mercurial > public > mercurial-scm > hg-stable
diff 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 |
line wrap: on
line diff
--- a/mercurial/sshserver.py Thu May 07 15:08:25 2009 +0300 +++ b/mercurial/sshserver.py Tue Apr 28 17:40:46 2009 +0200 @@ -8,7 +8,8 @@ from i18n import _ from node import bin, hex -import os, streamclone, sys, tempfile, util, hook +import streamclone, util, hook +import os, sys, tempfile class sshserver(object): def __init__(self, ui, repo):