~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/lp_api.py

  • Committer: Jonathan Lange
  • Date: 2009-12-16 07:06:19 UTC
  • mto: This revision was merged to the branch mainline in revision 4907.
  • Revision ID: jml@canonical.com-20091216070619-m7v4t1zrs0yq9k91
Remove old XXX

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
def get_cache_directory():
47
47
    """Return the directory to cache launchpadlib objects in."""
48
 
    # XXX: Not the right value for Windows. Use the same logic as config_dir
49
 
    # to get a suitable base directory, maybe extract stuff out of that.
50
48
    if sys.platform == 'win32':
51
49
        base = win32utils.get_appdata_location_unicode()
52
50
        if base is None: