This website works better with JavaScript.
Home
Help
Register
Sign In
nilm
/
nilmrun
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
23
Wiki
Activity
Browse Source
Fix #! at top of shell scripts for py3 and venvs
tags/nilmrun-2.0.2^0
Jim Paris
2 years ago
parent
079a2b5192
commit
09a9ed9734
7 changed files
with
7 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
nilmrun/processmanager.py
+1
-1
scripts/kill.py
+1
-1
scripts/nilmrun_server.py
+1
-1
scripts/ps.py
+1
-1
scripts/run.py
+1
-1
setup.py
+1
-1
tests/runtests.py
+ 1
- 1
nilmrun/processmanager.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
import threading
import subprocess
+ 1
- 1
scripts/kill.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
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
python
3
import nilmrun.server
import argparse
+ 1
- 1
scripts/ps.py
View File
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/
env
python
3
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
python
3
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
python
3
# 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
python
3
import nose
import os
Write
Preview
Loading…
Cancel
Save