Skip to content

Commit d3a0404

Browse files
author
ng0
committed
Fix python shebangs from #!/usr/bin/env python2.7*' to #!/usr/bin/python2.7'.
* src/bitmessagecli.py: fix it. * src/bitmessagemain.py: same. This fixes #887.
1 parent af0dfdc commit d3a0404

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bitmessagecli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2.7.x
1+
#!/usr/bin/python2.7
22
# Created by Adam Melton (.dok) referenceing https://bitmessage.org/wiki/API_Reference for API documentation
33
# Distributed under the MIT/X11 software license. See http://www.opensource.org/licenses/mit-license.php.
44

src/bitmessagemain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2.7
1+
#!/usr/bin/python2.7
22
# Copyright (c) 2012-2016 Jonathan Warren
33
# Copyright (c) 2012-2016 The Bitmessage developers
44
# Distributed under the MIT/X11 software license. See the accompanying

0 commit comments

Comments
 (0)