Commit 6a65e8f7 authored by Jim Fulton's avatar Jim Fulton

another test passing w 3.2

parent dfe640d1
...@@ -15,7 +15,7 @@ can't delete. ...@@ -15,7 +15,7 @@ can't delete.
... ''' ... '''
... import os ... import os
... import sys ... import sys
... print_ = lambda *a: sys.stdout.write(' '.join(map(str, a))+'\n') ... print_ = lambda *a: sys.stdout.write(' '.join(map(str, a))+'\\n')
... class Recipe: ... class Recipe:
... def __init__(self, buildout, name, options): ... def __init__(self, buildout, name, options):
... self.location = os.path.join( ... self.location = os.path.join(
...@@ -29,7 +29,7 @@ can't delete. ...@@ -29,7 +29,7 @@ can't delete.
... ...
... name = os.path.join (self.location, 'readonly.txt') ... name = os.path.join (self.location, 'readonly.txt')
... open (name, 'w').write ('this is a read only file') ... open (name, 'w').write ('this is a read only file')
... os.chmod (name, 0400) ... os.chmod(name, 256)
... return () ... return ()
... ...
... update = install ... update = install
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment