Show More
@@ -22,6 +22,7 b'' | |||
|
22 | 22 | HG repository module |
|
23 | 23 | """ |
|
24 | 24 | |
|
25 | import logging | |
|
25 | 26 | import binascii |
|
26 | 27 | import os |
|
27 | 28 | import re |
@@ -50,6 +51,8 b' from rhodecode.lib.vcs.exceptions import' | |||
|
50 | 51 | hexlify = binascii.hexlify |
|
51 | 52 | nullid = "\0" * 20 |
|
52 | 53 | |
|
54 | log = logging.getLogger(__name__) | |
|
55 | ||
|
53 | 56 | |
|
54 | 57 | class MercurialRepository(BaseRepository): |
|
55 | 58 | """ |
General Comments 0
You need to be logged in to leave comments.
Login now