Skip to content

Commit

Permalink
Merge pull request #2 from M1XZG/m1xzg-pathfix
Browse files Browse the repository at this point in the history
Updated the interpreter line to be more portable
  • Loading branch information
rohancme authored May 31, 2020
2 parents 7b4fd5c + 00357ee commit c3fd9f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hist.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/python3
#!/usr/bin/env python3

import os
import sqlite3
Expand Down Expand Up @@ -125,4 +125,4 @@ def restore(history_path=None, db_name=None, max_lines=None):
elif (args.restore):
restore(args.path, args.dbname, args.maxlines)
else:
parser.print_help()
parser.print_help()

0 comments on commit c3fd9f1

Please sign in to comment.