コード例 #1
0
ファイル: network.py プロジェクト: AlexUlrich/digsby
    def __init__(self, enabled = True,  **options):
        AccountBase.__init__(self, **options)
        UpdateMixin.__init__(self, **options)
        FromNetMixin.__init__(self, **options)

        self.enabled = enabled
        self._dirty_error = True # The next error is new
コード例 #2
0
    def __init__(self, enabled=True, **options):
        AccountBase.__init__(self, **options)
        UpdateMixin.__init__(self, **options)
        FromNetMixin.__init__(self, **options)

        self.enabled = enabled
        self._dirty_error = True  # The next error is new
コード例 #3
0
ファイル: emailaccount.py プロジェクト: AlexUlrich/digsby
    def __init__(self, enabled = True, updateNow = True, **options):

        AccountBase.__init__(self, **options)
        UpdateMixin.__init__(self, **options)
        FromNetMixin.__init__(self, **options)

        self.emails = ObservableList()
        self.count = 0
        self.seen = set()
        self._dirty_error = True # The next error is new.

        log.info('Created EmailAccount: %r. Setting enabled to %r', self, enabled)

        self.enabled = enabled
コード例 #4
0
ファイル: emailaccount.py プロジェクト: sgricci/digsby
    def __init__(self, enabled=True, updateNow=True, **options):

        AccountBase.__init__(self, **options)
        UpdateMixin.__init__(self, **options)
        FromNetMixin.__init__(self, **options)

        self.emails = ObservableList()
        self.count = 0
        self.seen = set()
        self._dirty_error = True  # The next error is new.

        log.info('Created EmailAccount: %r. Setting enabled to %r', self,
                 enabled)

        self.enabled = enabled
コード例 #5
0
ファイル: emailaccount.py プロジェクト: AlexUlrich/digsby
 def _get_options(self):
     opts = UpdateMixin.get_options(self)
     return opts
コード例 #6
0
ファイル: emailaccount.py プロジェクト: sgricci/digsby
 def _get_options(self):
     opts = UpdateMixin.get_options(self)
     return opts