Browse Source

Fix shebang for Python version 2 (PEP 394)

Rogdham 11 years ago
parent
commit
59a6cd0b14
3 changed files with 2 additions and 3 deletions
  1. 0 1
      config.py
  2. 1 1
      shell.py
  3. 1 1
      validator.py

+ 0 - 1
config.py

@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
 SQLALCHEMY_DATABASE_URI = 'sqlite:///../ffdn-db.sqlite'

+ 1 - 1
shell.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 import os
 import readline
 from pprint import pprint

+ 1 - 1
validator.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # -*- coding: utf-8 -*-
 
 import sys