aboutsummaryrefslogtreecommitdiffstats
path: root/mvc/osx/autoupdate.py
blob: 7b17d4726337a3482e42d08cf0a44b6ce172f3af (plain)
1
2
3
4
5
6
7
8
9
from Foundation import *

def load_sparkle_framework():
    bundlePath = '%s/Sparkle.framework' % Foundation.NSBundle.mainBundle().privateFrameworksPath()
    objc.loadBundle('Sparkle', globals(), bundle_path=bundlePath)

def initialize():
    load_sparkle_framework()
    SUUpdater.sharedUpdater().setAutomaticallyChecksForUpdates_(YES)