mirror of
https://github.com/munki/munki.git
synced 2026-03-06 14:59:43 -06:00
Update OS X text
This commit is contained in:
@@ -51,7 +51,7 @@ try:
|
||||
except ImportError:
|
||||
# munkilib is not available
|
||||
def listdir(path):
|
||||
"""OSX HFS+ string encoding safe listdir().
|
||||
"""OS X HFS+ string encoding safe listdir().
|
||||
|
||||
Args:
|
||||
path: path to list contents of
|
||||
@@ -60,7 +60,7 @@ except ImportError:
|
||||
"""
|
||||
# if os.listdir() is supplied a unicode object for the path,
|
||||
# it will return unicode filenames instead of their raw fs-dependent
|
||||
# version, which is decomposed utf-8 on OSX.
|
||||
# version, which is decomposed utf-8 on OS X.
|
||||
#
|
||||
# we use this to our advantage here and have Python do the decoding
|
||||
# work for us, instead of decoding each item in the output list.
|
||||
|
||||
@@ -587,7 +587,7 @@ def main():
|
||||
'--installer_choices_xml', '--installer-choices-xml',
|
||||
action='store_true',
|
||||
help=('Generate installer choices for metapackages. '
|
||||
'Note: Requires Mac OS X 10.6.6 or later.')
|
||||
'Note: Requires OS X 10.6.6 or later.')
|
||||
)
|
||||
apple_options.add_option(
|
||||
'--installer_environment', '--installer-environment', '-E',
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
"""FoundationPlist.py -- a tool to generate and parse MacOSX .plist files.
|
||||
"""FoundationPlist.py -- a tool to generate and parse OS X .plist files.
|
||||
|
||||
This is intended as a drop-in replacement for Python's included plistlib,
|
||||
with a few caveats:
|
||||
|
||||
@@ -2536,7 +2536,7 @@ def cleanUpTmpDir():
|
||||
|
||||
|
||||
def listdir(path):
|
||||
"""OSX HFS+ string encoding safe listdir().
|
||||
"""OS X HFS+ string encoding safe listdir().
|
||||
|
||||
Args:
|
||||
path: path to list contents of
|
||||
@@ -2545,7 +2545,7 @@ def listdir(path):
|
||||
"""
|
||||
# if os.listdir() is supplied a unicode object for the path,
|
||||
# it will return unicode filenames instead of their raw fs-dependent
|
||||
# version, which is decomposed utf-8 on OSX.
|
||||
# version, which is decomposed utf-8 on OS X.
|
||||
#
|
||||
# we use this to our advantage here and have Python do the decoding
|
||||
# work for us, instead of decoding each item in the output list.
|
||||
|
||||
Reference in New Issue
Block a user