##// END OF EJS Templates
sshserver: use absolute_import
Gregory Szorc -
r25976:72b36785 default
parent child Browse files
Show More
@@ -6,8 +6,16 b''
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 import util, hook, wireproto
9 from __future__ import absolute_import
10 import os, sys
10
11 import os
12 import sys
13
14 from . import (
15 hook,
16 util,
17 wireproto,
18 )
11
19
12 class sshserver(wireproto.abstractserverproto):
20 class sshserver(wireproto.abstractserverproto):
13 def __init__(self, ui, repo):
21 def __init__(self, ui, repo):
General Comments 0
You need to be logged in to leave comments. Login now