Mercurial > public > mercurial-scm > hg
comparison mercurial/sshrepo.py @ 1103:808a9f0e7af0
Fix sshrepo imports
author | mpm@selenic.com |
---|---|
date | Sat, 27 Aug 2005 16:40:24 -0700 |
parents | ae4f1f48c569 |
children | 84cf8834efb5 |
comparison
equal
deleted
inserted
replaced
1102:c81d264cd17d | 1103:808a9f0e7af0 |
---|---|
4 # | 4 # |
5 # This software may be used and distributed according to the terms | 5 # This software may be used and distributed according to the terms |
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 import os, re, select | 8 import os, re, select |
9 from node import * | |
10 from remoterepo import * | |
9 | 11 |
10 class sshrepository(remoterepository): | 12 class sshrepository(remoterepository): |
11 def __init__(self, ui, path): | 13 def __init__(self, ui, path): |
12 self.url = path | 14 self.url = path |
13 self.ui = ui | 15 self.ui = ui |