~ubuntu-branches/ubuntu/trusty/bzr-xmloutput/trusty

« back to all changes in this revision

Viewing changes to infoxml.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2011-12-20 02:10:28 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20111220021028-63hxs9lmup9y92cn
Tags: 0.8.8+bzr160-1
* New upstream snapshot.
 + Fixes compatibility with bzr 2.5 beta 5 and later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
__all__ = ['show_bzrdir_info_xml']
29
29
 
 
30
from bzrlib import info
30
31
from bzrlib.lazy_import import lazy_import
31
32
lazy_import(globals(), """
32
33
import os, sys, time
36
37
    errors,
37
38
    osutils,
38
39
    urlutils,
39
 
    info,
40
40
    missing,
41
41
    )
42
42
""")