Show More
@@ -28,13 +28,19 b' command="cd repos && hg-ssh user/thomas/' | |||
|
28 | 28 | You can also add a --read-only flag to allow read-only access to a key, e.g.: |
|
29 | 29 | command="hg-ssh --read-only repos/*" |
|
30 | 30 | """ |
|
31 | from __future__ import absolute_import | |
|
32 | ||
|
33 | import os | |
|
34 | import shlex | |
|
35 | import sys | |
|
31 | 36 | |
|
32 | 37 | # enable importing on demand to reduce startup time |
|
33 |
|
|
|
38 | import hgdemandimport ; hgdemandimport.enable() | |
|
34 | 39 | |
|
35 |
from mercurial import |
|
|
36 | ||
|
37 | import sys, os, shlex | |
|
40 | from mercurial import ( | |
|
41 | dispatch, | |
|
42 | ui as uimod, | |
|
43 | ) | |
|
38 | 44 | |
|
39 | 45 | def main(): |
|
40 | 46 | cwd = os.getcwd() |
General Comments 0
You need to be logged in to leave comments.
Login now