Browse Source

Fix #! at top of shell scripts for py3 and venvs

tags/nilmdb-2.0.3
Jim Paris 3 years ago
parent
commit
6cc1f6b7b2
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      extras/fix-oversize-files.py
  2. +1
    -1
      nilmdb/scripts/nilmdb_fsck.py
  3. +1
    -1
      nilmdb/scripts/nilmdb_server.py
  4. +1
    -1
      nilmdb/scripts/nilmtool.py
  5. +1
    -1
      setup.py
  6. +1
    -1
      tests/runtests.py

+ 1
- 1
extras/fix-oversize-files.py View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

import os
import sys


+ 1
- 1
nilmdb/scripts/nilmdb_fsck.py View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

import nilmdb.fsck
import argparse


+ 1
- 1
nilmdb/scripts/nilmdb_server.py View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

import os
import sys


+ 1
- 1
nilmdb/scripts/nilmtool.py View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

import nilmdb.cmdline



+ 1
- 1
setup.py View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

# To release a new version, tag it:
# git tag -a nilmdb-1.1 -m "Version 1.1"


+ 1
- 1
tests/runtests.py View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

import nose
import os


Loading…
Cancel
Save