~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2006-12-12 22:41:55 UTC
  • Revision ID: abentley@panoramicfeedback.com-20061212224155-uwyt16xhvekwwh3m
Add zip import support

Show diffs side-by-side

added added

removed removed

Lines of Context:
522
522
 
523
523
 
524
524
class cmd_import(bzrlib.commands.Command):
525
 
    """Import sources from a tarball
 
525
    """Import sources from a tarball or zip file
526
526
    
527
 
    This command will import a tarball into a bzr tree, replacing any versioned
528
 
    files already present.  If a directory is specified, it is used as the
529
 
    target.  If the directory does not exist, or is not versioned, it is
530
 
    created.
 
527
    This command will import a tarball or zip file into a bzr tree, replacing
 
528
    any versioned files already present.  If a directory is specified, it is
 
529
    used as the target.  If the directory does not exist, or is not versioned,
 
530
    it is created.
531
531
 
532
532
    Tarballs may be gzip or bzip2 compressed.  This is autodetected.
533
533