home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 June / maximum-cd-2009-06.iso / DiscContents / digsby_setup.exe / lib / digsbycrust.pyo (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2009-02-26  |  1.1 KB  |  30 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. from util.primitives import Storage
  5. import wx
  6. from gui.shell import PyCrustFrame
  7.  
  8. class FakeApp(wx.PySimpleApp):
  9.     
  10.     def OnInit(self, *a, **k):
  11.         PyCrustFrame(standalone = True).Show()
  12.         return True
  13.  
  14.  
  15.  
  16. def main():
  17.     FakeApp().MainLoop()
  18.  
  19. if __name__ == '__main__':
  20.     import gettext
  21.     gettext.install('digsby')
  22.     import main as main_mod
  23.     main_mod.setup_log_system()
  24.     main_mod.init_threadpool()
  25.     from common.commandline import *
  26.     import digsbyprofile
  27.     digsbyprofile.profile = Storage(username = 'TEST')
  28.     main()
  29.  
  30.