Changeset 3378

Show
Ignore:
Timestamp:
08/09/08 16:05:28 (2 years ago)
Author:
devtar
Message:

fixed import order. btcore updated.

Location:
branch/BluetoothScanner/umitBluetooth
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • branch/BluetoothScanner/umitBluetooth/__init__.py

    r3091 r3378  
    2222 
    2323__author__ = "Devtar Singh <devtar@gmail.com>" 
    24 __date__ = "7 July 2008" 
    25 __version__ = "100" # build version 
     24__date__ = "9 August 2008" 
     25__version__ = "200" # build version 
  • branch/BluetoothScanner/umitBluetooth/btcore.py

    r3377 r3378  
    3030   except ImportError, msg: 
    3131      print >> sys.stderr, "Error loading LightBlue dependency.Exiting UmitBT..." 
    32       raise ImportError(msg) 
     32      raise 
    3333else: 
    3434   try: 
     
    3636   except ImportError, msg: 
    3737      print >> sys.stderr, "Error loading PyBluez dependency. Exiting UmitBT..." 
    38       raise ImportError(msg) 
     38      raise 
    3939 
    4040#from umitCore.I18N import _ 
  • branch/BluetoothScanner/umitBluetooth/interface.py

    r3334 r3378  
    1818# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1919 
     20import gtk 
     21import os 
     22 
    2023import pygtk 
    2124pygtk.require('2.0') 
    22 import gtk 
    23 import os 
    2425 
    2526import about 
  • branch/BluetoothScanner/umitBluetooth/io.py

    r3334 r3378  
    1818# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1919 
     20import os 
     21import string 
     22 
    2023import pygtk 
    2124pygtk.require('2.0') 
    2225import gtk 
    23 import os 
    24 import string 
    2526 
    2627from higwidgets.higdialogs import HIGAlertDialog 
  • branch/BluetoothScanner/umitBluetooth/main.py

    r3091 r3378  
    1818# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    1919 
     20import sys 
     21import os 
     22 
    2023import pygtk 
    2124pygtk.require('2.0') 
    2225import gtk 
    23  
    24 import sys 
    25 import os 
     26import imp 
    2627 
    2728import interface 
    2829 
    29 import imp 
    3030frozen = (hasattr(sys, "frozen") or # new py2exe 
    3131          hasattr(sys, "importers") # old py2exe