Commit 62402a33 authored by Andreas Jung's avatar Andreas Jung

parent b12ae0a2
......@@ -29,6 +29,8 @@ Zope Changes
- Collector #889: made 'and' operator for KeywordIndexes actually
restrict results as expected (thanks to 'aroda' for the patch!).
- Collector #1323: applied patch to fix umask problem in zdctl
Zope 2.8.0 b2 (2005/05/22)
Features added
......
......@@ -213,7 +213,7 @@ class ZDCmd(cmd.Cmd):
args += self._get_override("-f", "forever", flag=1)
args += self._get_override("-s", "sockname")
args += self._get_override("-u", "user")
args += self._get_override("-m", "umask")
args += self._get_override("-m", "umask", oct(self.options.umask))
args += self._get_override(
"-x", "exitcodes", ",".join(map(str, self.options.exitcodes)))
args += self._get_override("-z", "directory")
......
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