URI: 
       tadd packages directory to osx setup - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 2af670ea2b92e835919b745d94afcb8b4ec32fda
   DIR parent bba9da91dea39dbba2c88f41601cbaa4ac90d922
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Tue, 18 Aug 2015 17:36:22 +0200
       
       add packages directory to osx setup
       
       Diffstat:
         M setup-release.py                    |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/setup-release.py b/setup-release.py
       t@@ -1,5 +1,5 @@
        """
       -py2app/py2exe build script for Electrum Litecoin
       +py2app/py2exe build script for Electrum
        
        Usage (Mac OS X):
             python setup.py py2app
       t@@ -37,7 +37,7 @@ if sys.platform == 'darwin':
                app=[mainscript],
                options=dict(py2app=dict(argv_emulation=False,
                                         includes=['PyQt4.QtCore', 'PyQt4.QtGui', 'PyQt4.QtWebKit', 'PyQt4.QtNetwork', 'sip'],
       -                                 packages=['lib', 'gui', 'plugins'],
       +                                 packages=['lib', 'gui', 'plugins', 'packages'],
                                         iconfile='electrum.icns',
                                         plist=plist,
                                         resources=["icons"])),