aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2013-11-01 11:16:32 +1100
committerRuss Cox <rsc@golang.org>2013-11-01 11:16:32 +1100
commitce1a9fcbf5f6216447c9a98c8b24055dac3728fd (patch)
tree34e139ac86b0c9164b06bbdee5d888876351e793
parentcc10ac750d7ce1cf146db3e92a69cf5b73765743 (diff)
downloadgo-ce1a9fcbf5f6216447c9a98c8b24055dac3728fd.tar.gz
go-ce1a9fcbf5f6216447c9a98c8b24055dac3728fd.zip
[release-branch.go1.2] plan9: correct create permissions with union directory
««« CL 15360045 / f257b02e7ffe plan9: correct create permissions with union directory R=golang-dev, rsc CC=golang-dev https://golang.org/cl/15360045 »»» R=golang-dev CC=golang-dev https://golang.org/cl/19960046
-rw-r--r--lib/codereview/codereview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/codereview/codereview.py b/lib/codereview/codereview.py
index 8b9e9b6c76..ec3e9c199d 100644
--- a/lib/codereview/codereview.py
+++ b/lib/codereview/codereview.py
@@ -65,7 +65,7 @@ from mercurial import util as hg_util
if os.sys.platform == 'plan9':
try:
import plan9
- n = plan9.bind(os.path.expanduser("~/lib"), os.path.expanduser("~"), plan9.MBEFORE)
+ n = plan9.bind(os.path.expanduser("~/lib"), os.path.expanduser("~"), plan9.MBEFORE|plan9.MCREATE)
except ImportError:
pass