~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin Packman
  • Date: 2011-11-29 16:14:12 UTC
  • mto: This revision was merged to the branch mainline in revision 6327.
  • Revision ID: martin.packman@canonical.com-20111129161412-mx4yu5mg6xsaty46
Require the dulwich package when using py2exe with the git plugin enabled

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        proxy_info=proxy_info)
136
136
    # XXX: Work-around a minor security bug in launchpadlib 1.5.1, which would
137
137
    # create this directory with default umask.
138
 
    osutils.chmod_if_possible(cache_directory, 0700)
 
138
    os.chmod(cache_directory, 0700)
139
139
    return launchpad
140
140
 
141
141