From de6e9b9fefce375fc0f103caa4a69501015ad05f Mon Sep 17 00:00:00 2001 From: thekoc Date: Thu, 13 Feb 2020 09:41:48 -0500 Subject: [PATCH] Updated shebang --- action.py | 2 +- cache.py | 2 ++ config.py | 2 ++ default.py | 2 +- devonthink.py | 2 +- frequency.py | 2 ++ launchbar.py | 1 + logger.py | 1 + 8 files changed, 11 insertions(+), 3 deletions(-) diff --git a/action.py b/action.py index 0412b5b..c451cb9 100755 --- a/action.py +++ b/action.py @@ -1,4 +1,4 @@ -#!/usr/local/bin/python3 +#!/usr/bin/python3 import os import sys import json diff --git a/cache.py b/cache.py index c528842..64ca001 100644 --- a/cache.py +++ b/cache.py @@ -1,3 +1,5 @@ +#!/usr/bin/python3 + import os import sqlite3 from datetime import datetime diff --git a/config.py b/config.py index c583048..6714d58 100644 --- a/config.py +++ b/config.py @@ -1,3 +1,5 @@ +#!/usr/bin/python3 + a = 0.8 b = 0.5 frequency_weight = 2 diff --git a/default.py b/default.py index 37b13f2..da511bc 100755 --- a/default.py +++ b/default.py @@ -1,4 +1,4 @@ -#!/usr/local/bin/python3 +#!/usr/bin/python3 # # LaunchBar Action Script # diff --git a/devonthink.py b/devonthink.py index d7361d1..4339188 100644 --- a/devonthink.py +++ b/devonthink.py @@ -1,4 +1,4 @@ -#!/usr/local/python3 +#!/usr/bin/python3 """A wrapper for search.js""" import sys import json diff --git a/frequency.py b/frequency.py index ec52c15..09cc1d6 100644 --- a/frequency.py +++ b/frequency.py @@ -1,3 +1,5 @@ +#!/usr/bin/python3 + import sqlite3 import os from launchbar import LaunchBar diff --git a/launchbar.py b/launchbar.py index 13b2927..8ea1f5e 100644 --- a/launchbar.py +++ b/launchbar.py @@ -1,3 +1,4 @@ +#!/usr/bin/python3 import os import subprocess import re diff --git a/logger.py b/logger.py index 49d5197..9797d8a 100644 --- a/logger.py +++ b/logger.py @@ -1,3 +1,4 @@ +#!/usr/bin/python3 import logging logging.basicConfig(format='%(asctime)s %(message)s', filename='devonthinksearch.log', filemode='a', level=logging.ERROR)