/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/archive/zip.py

  • Committer: Jelmer Vernooij
  • Date: 2018-05-19 13:16:11 UTC
  • mto: (6968.4.3 git-archive)
  • mto: This revision was merged to the branch mainline in revision 6972.
  • Revision ID: jelmer@jelmer.uk-20180519131611-l9h9ud41j7qg1m03
Move tar/zip to breezy.archive.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from .. import (
29
29
    osutils,
30
30
    )
31
 
from ..export import _export_iter_entries
 
31
from ..archive import _export_iter_entries
32
32
from ..trace import mutter
33
33
 
34
34
 
42
42
_DIR_ATTR = stat.S_IFDIR | ZIP_DIRECTORY_BIT | DIR_PERMISSIONS
43
43
 
44
44
 
45
 
def zip_exporter_generator(tree, dest, root, subdir=None,
 
45
def zip_archive_generator(tree, dest, root, subdir=None,
46
46
    force_mtime=None, fileobj=None):
47
47
    """ Export this tree to a new zip file.
48
48