URI: 
       tMerge pull request #26 from Sjors/2018/05/python-path - electrum-personal-server - Maximally lightweight electrum server for a single user
  HTML git clone https://git.parazyd.org/electrum-personal-server
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit 1751fb724a9f38c47ec663e4b9f9dc59542b916c
   DIR parent 5a255e406a578622f074259ece66e9d047d8ac98
  HTML Author: chris-belcher <chris-belcher@users.noreply.github.com>
       Date:   Wed, 23 May 2018 17:00:20 +0100
       
       Merge pull request #26 from Sjors/2018/05/python-path
       
       More portable python shebang line
       Diffstat:
         M rescan-script.py                    |       3 +--
         M server.py                           |       2 +-
       
       2 files changed, 2 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/rescan-script.py b/rescan-script.py
       t@@ -1,4 +1,4 @@
       -#! /usr/bin/python3
       +#! /usr/bin/env python3
        
        from configparser import ConfigParser, NoSectionError, NoOptionError
        from electrumpersonalserver.jsonrpc import JsonRpc, JsonRpcError
       t@@ -69,4 +69,3 @@ def main():
            
        
        main()
       -
   DIR diff --git a/server.py b/server.py
       t@@ -1,4 +1,4 @@
       -#! /usr/bin/python3
       +#! /usr/bin/env python3
        
        import socket, time, json, datetime, struct, binascii, ssl, os, os.path
        from configparser import ConfigParser, NoSectionError, NoOptionError