Revert all NSURL commits.

Revert "Move keychain location back into root's home dir"

This reverts commit 78b88bc10c.
This commit is contained in:
Greg Neagle
2014-06-16 15:34:22 -07:00
parent 78b88bc10c
commit c86d9a536f
+2 -3
View File
@@ -113,10 +113,9 @@ def keychain_path():
# Correct the filename to include '.keychain' if not already present
if not keychain_name.lower().endswith('.keychain'):
keychain_name += '.keychain'
# make full path for keychain in root's home dir
# make full path
abs_keychain_path = os.path.realpath(
os.path.join(
os.path.expanduser('~root/Library/Keychains'), keychain_name))
os.path.join(os.path.expanduser('/Library/Keychains'), keychain_name))
return abs_keychain_path