~ubuntu-branches/ubuntu/oneiric/loggerhead/oneiric

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_simple.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij, Andrew Starr-Bochicchio, Jelmer Vernooij
  • Date: 2010-10-11 11:00:01 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20101011110001-601j3dubl20c4lqx
Tags: 1.17+bzr429-1
[ Andrew Starr-Bochicchio ]
* debian/control:
 - Recommend python-pygments to support syntax-highlighting. (LP: #607775)
 - Add Vcs-Browser field.
 - Bump Standards-Version to 3.9.1, no-changes needed.

[ Jelmer Vernooij ]
* New upstream snapshot.
* Cope with bzrlib.util.configobj no longer existing.
* Add convenience script for automatically updating dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import shutil
22
22
 
23
23
from bzrlib.tests import TestCaseWithTransport
24
 
from bzrlib.util.configobj.configobj import ConfigObj
 
24
try:
 
25
    from bzrlib.util.configobj.configobj import ConfigObj
 
26
except ImportError:
 
27
    from configobj import ConfigObj
25
28
from bzrlib import config
26
29
 
27
30
from loggerhead.apps.branch import BranchWSGIApp