Browse Source

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

tags/nilmrun-2.0.2^0
Jim Paris 3 years ago
parent
commit
09a9ed9734
7 changed files with 7 additions and 7 deletions
  1. +1
    -1
      nilmrun/processmanager.py
  2. +1
    -1
      scripts/kill.py
  3. +1
    -1
      scripts/nilmrun_server.py
  4. +1
    -1
      scripts/ps.py
  5. +1
    -1
      scripts/run.py
  6. +1
    -1
      setup.py
  7. +1
    -1
      tests/runtests.py

+ 1
- 1
nilmrun/processmanager.py View File

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

import threading
import subprocess


+ 1
- 1
scripts/kill.py View File

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

from nilmdb.client.httpclient import HTTPClient, ClientError, ServerError
from nilmdb.utils.printf import *


+ 1
- 1
scripts/nilmrun_server.py View File

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

import nilmrun.server
import argparse


+ 1
- 1
scripts/ps.py View File

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

from nilmdb.client.httpclient import HTTPClient, ClientError, ServerError
from nilmdb.utils.printf import *


+ 1
- 1
scripts/run.py View File

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

from nilmdb.client.httpclient import HTTPClient, ClientError, ServerError
from nilmdb.utils.printf import *


+ 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 nilmrun-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