~ubuntu-branches/ubuntu/raring/bzr-svn/raring

« back to all changes in this revision

Viewing changes to cache/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2010-07-30 23:14:36 UTC
  • mfrom: (1.1.28 upstream) (3.3.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100730231436-po8j0ibgjn2d6hy0
Tags: 1.0.3-1
* New upstream release.
 + Provides BranchConfig._get_change_editor. Closes: #572109
 + Supports more trunk layout levels. Closes: #573988
* Bump standards version to 3.9.1.
* Mark as supporting bzr 2.2.
* Suggest bzr-rewrite rather than bzr-rebase. LP: #481730

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        f.write(
42
42
"""This directory contains information cached by the bzr-svn plugin.
43
43
 
44
 
It is used for performance reasons only and can be removed 
 
44
It is used for performance reasons only and can be removed
45
45
without losing data.
46
46
 
47
47
See http://bazaar-vcs.org/BzrForeignBranches/Subversion for details.
66
66
        from bzrlib.win32utils import get_local_appdata_location
67
67
        s = get_local_appdata_location()
68
68
        assert s is not None
69
 
        # This can return a unicode string or a plain string in 
 
69
        # This can return a unicode string or a plain string in
70
70
        # user encoding
71
71
        if type(s) == str:
72
72
            s = s.decode(bzrlib.user_encoding)