~aaron-whitehouse/duplicity/08-make-docker-use-local

« back to all changes in this revision

Viewing changes to testing/unit/test_util.py

  • Committer: kenneth at loafman
  • Date: 2019-06-29 15:35:07 UTC
  • Revision ID: kenneth@loafman.com-20190629153507-v33xw4ekmtbwr5b2
* Normalize shebang to just python, no version number
* Fix so most testing/*.py files have the future suggested lines
  - from __future__ import print_function
    from future import standard_library
    standard_library.install_aliases()

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with duplicity; if not, write to the Free Software Foundation,
16
16
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
17
 
 
18
from __future__ import print_function
 
19
from future import standard_library
 
20
standard_library.install_aliases()
 
21
 
18
22
import unittest
19
23
import duplicity
20
24