コード例 #1
0
ファイル: tasks.py プロジェクト: ayax79/kegbot
def handle_new_picture(picture_id):
  foursquare_tasks.handle_new_picture(picture_id)
コード例 #2
0
def handle_new_picture(picture_id):
    foursquare_tasks.handle_new_picture(picture_id)
コード例 #3
0
ファイル: tasks.py プロジェクト: MarcusFulbright/kegbot
def handle_new_picture(picture_id):
  if features.use_foursquare():
    LOGGER.info('handle_new_picture: dispatching to foursquare ..')
    foursquare_tasks.handle_new_picture(picture_id)
  else:
    LOGGER.info('handle_new_picture: foursquare not enabled, skipping.')