/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 tools/capture_tree.py

  • Committer: Breezy landing bot
  • Author(s): Martin
  • Date: 2018-11-17 17:02:40 UTC
  • mfrom: (7183.2.1 lint_E999)
  • Revision ID: breezy.the.bot@gmail.com-20181117170240-wyvit5e5ul4m4xku
Fix E999 lint error for Python 2 flake8.

Merged from https://code.launchpad.net/~gz/brz/lint_E999/+merge/358945

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# Copyright (C) 2005 Canonical Ltd
4
4
 
5
 
"""Print to stdout a description of the current directory, 
 
5
"""Print to stdout a description of the current directory,
6
6
formatted as a Python data structure.
7
7
 
8
8
This can be useful in tests that need to recreate directory
9
9
contents."""
10
10
 
 
11
from __future__ import print_function
 
12
 
 
13
import os
11
14
import sys
12
 
import os
13
15
 
14
16
from breezy.trace import enable_default_logging
15
17
enable_default_logging()