Comments
Patch
@@ -28,6 +28,8 @@
from __future__ import absolute_import
+from mercurial.i18n import _
+
from mercurial import (
bundle2,
changegroup,
@@ -40,7 +42,6 @@
scmutil,
vfs as vfsmod,
)
-from mercurial.i18n import _
from . import (
blobstore,
@@ -11,13 +11,14 @@
import os
import re
+from mercurial.i18n import _
+
from mercurial import (
error,
url as urlmod,
util,
vfs as vfsmod,
)
-from mercurial.i18n import _
# 64 bytes for SHA256
_lfsre = re.compile(r'\A[a-f0-9]{64}\Z')
@@ -9,10 +9,11 @@
import re
+from mercurial.i18n import _
+
from mercurial import (
error,
)
-from mercurial.i18n import _
class InvalidPointer(error.RevlogError):
pass
@@ -9,14 +9,15 @@
import hashlib
+from mercurial.i18n import _
+from mercurial.node import bin, nullid, short
+
from mercurial import (
error,
filelog,
revlog,
util,
)
-from mercurial.i18n import _
-from mercurial.node import bin, nullid, short
from . import (
blobstore,