From 0487cd45bc9936439ee9a3b27cae07e2c8264382 Mon Sep 17 00:00:00 2001 From: rlbr Date: Mon, 3 Dec 2018 18:31:11 -0600 Subject: [PATCH] fixed shabang --- total_cost.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 total_cost.py diff --git a/total_cost.py b/total_cost.py old mode 100644 new mode 100755 index df7ecbf..7acbe27 --- a/total_cost.py +++ b/total_cost.py @@ -1,4 +1,4 @@ -#/usr/bin/python +#!/usr/bin/python from json.decoder import JSONDecodeError import json import re @@ -170,4 +170,4 @@ def main(args): print(*ITEMS[args.query].get_build_info(),sep='\n') to_json() if __name__ == "__main__": - main(sys.argv[1:]) \ No newline at end of file + main(sys.argv[1:])