~timo-jyrinki/ubuntu/trusty/pitivi/backport_utopic_fixes

« back to all changes in this revision

Viewing changes to bin/pitivi.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-05-26 15:29:58 UTC
  • mfrom: (3.1.20 experimental)
  • Revision ID: james.westby@ubuntu.com-20110526152958-90je1myzzjly26vw
Tags: 0.13.9.90-1ubuntu1
* Resynchronize on Debian
* debian/control:
  - Depend on python-launchpad-integration
  - Drop hal from Recommends to Suggests. This version has the patch applied
    to not crash without hal.
* debian/patches/01_lpi.patch:
  - launchpad integration  
* debian/rules:
  - Use gnome.mk so a translation template is built

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
def _run_pitivi():
120
120
    import pitivi.application as ptv
121
121
 
 
122
    # Make it easy for developers to debug the application startup.
 
123
    if os.environ.get('PITIVI_DEBUG_NO_UI') == '1':
 
124
        print 'Starting Pitivi with no GUI.'
 
125
        ptv.GuiPitivi._showGui = lambda *args, **kargs : None
 
126
 
122
127
    sys.exit(ptv.main(sys.argv))
123
128
 
124
129
try: