diff options
author | Kashif Rasul <kashif.rasul@gmail.com> | 2014-09-23 12:29:18 +0200 |
---|---|---|
committer | Kashif Rasul <kashif.rasul@gmail.com> | 2014-09-23 12:29:18 +0200 |
commit | 60e12144cde7c12f1c0a301e8d6b99cd1080bcda (patch) | |
tree | 1f3b93e95a0b0cf902a474b78a4af63db33b6311 /pygments | |
parent | f4e2ecb8dbf8d9b74f5cd02a7da0b01f5b7edf24 (diff) | |
download | pygments-60e12144cde7c12f1c0a301e8d6b99cd1080bcda.tar.gz |
fixed framework path
Diffstat (limited to 'pygments')
-rw-r--r-- | pygments/lexers/_cocoabuiltins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/_cocoabuiltins.py b/pygments/lexers/_cocoabuiltins.py index 7ffa9ee4..d5be3b06 100644 --- a/pygments/lexers/_cocoabuiltins.py +++ b/pygments/lexers/_cocoabuiltins.py @@ -23,7 +23,7 @@ if __name__ == '__main__': import os import re - FRAMEWORKS_PATH = '/Applications/Xcode6-Beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks/' + FRAMEWORKS_PATH = '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks/' frameworks = os.listdir(FRAMEWORKS_PATH) all_interfaces = set() |