##// END OF EJS Templates
archival: use absolute_import
Gregory Szorc -
r25916:c1777ece default
parent child Browse files
Show More
@@ -5,14 +5,27 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from i18n import _
8 from __future__ import absolute_import
9 import match as matchmod
9
10 import cmdutil
10 import cStringIO
11 import scmutil, util, encoding
11 import gzip
12 import cStringIO, os, tarfile, time, zipfile
12 import os
13 import zlib, gzip
14 import struct
13 import struct
15 import error
14 import tarfile
15 import time
16 import zipfile
17 import zlib
18
19 from .i18n import _
20
21 from . import (
22 cmdutil,
23 encoding,
24 error,
25 match as matchmod,
26 scmutil,
27 util,
28 )
16
29
17 # from unzip source code:
30 # from unzip source code:
18 _UNX_IFREG = 0x8000
31 _UNX_IFREG = 0x8000
General Comments 0
You need to be logged in to leave comments. Login now