URI: 
       tosx.spec: trivial formatting - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0b5d9185ff43873b0db88b7d596983919db0e666
   DIR parent a9f6e26d02db91425ec0c7fb2bea8eefbce8423a
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Tue, 23 Jun 2020 16:01:46 +0200
       
       osx.spec: trivial formatting
       
       Diffstat:
         M contrib/osx/osx.spec                |      43 +++++++++++++++++--------------
       
       1 file changed, 23 insertions(+), 20 deletions(-)
       ---
   DIR diff --git a/contrib/osx/osx.spec b/contrib/osx/osx.spec
       t@@ -139,24 +139,27 @@ if APP_SIGN:
        
        pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
        
       -exe = EXE(pyz,
       -          a.scripts,
       -          a.binaries,
       -          a.datas,
       -          name=PACKAGE,
       -          debug=False,
       -          strip=False,
       -          upx=True,
       -          icon=electrum+ICONS_FILE,
       -          console=False)
       -
       -app = BUNDLE(exe,
       -             version = VERSION,
       -             name=PACKAGE + '.app',
       -             icon=electrum+ICONS_FILE,
       -             bundle_identifier=None,
       -             info_plist={
       -                'NSHighResolutionCapable': 'True',
       -                'NSSupportsAutomaticGraphicsSwitching': 'True'
       -             }
       +exe = EXE(
       +    pyz,
       +    a.scripts,
       +    a.binaries,
       +    a.datas,
       +    name=PACKAGE,
       +    debug=False,
       +    strip=False,
       +    upx=True,
       +    icon=electrum+ICONS_FILE,
       +    console=False,
       +)
       +
       +app = BUNDLE(
       +    exe,
       +    version = VERSION,
       +    name=PACKAGE + '.app',
       +    icon=electrum+ICONS_FILE,
       +    bundle_identifier=None,
       +    info_plist={
       +        'NSHighResolutionCapable': 'True',
       +        'NSSupportsAutomaticGraphicsSwitching': 'True'
       +    },
        )