~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to upstream_import.py

  • Committer: Aaron Bentley
  • Date: 2011-06-28 07:59:00 UTC
  • Revision ID: aaron@aaronbentley.com-20110628075900-9vg08zbpwvl52hat
Fix docstring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
316
316
    """Return the type of archive and compressor indicated by path name.
317
317
 
318
318
    Only external compressors are returned, so zip files are only
319
 
    ('zip', None).  .tgz is treated as ('tar', 'gz') and '.xz' is treated as
320
 
    'tar', 'lzma'.
 
319
    ('zip', None).  .tgz is treated as ('tar', 'gz') and '.tar.xz' is treated
 
320
    as ('tar', 'lzma').
321
321
    """
322
322
    matches = re.match(r'.*\.(zip|tgz|tar(.(gz|bz2|lzma|xz))?)$', path)
323
323
    if not matches: