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

« back to all changes in this revision

Viewing changes to .pc/01_disable-devel-mode.patch/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:
130
130
def _run_pitivi():
131
131
    import pitivi.application as ptv
132
132
 
 
133
    # Make it easy for developers to debug the application startup.
 
134
    if os.environ.get('PITIVI_DEBUG_NO_UI') == '1':
 
135
        print 'Starting Pitivi with no GUI.'
 
136
        ptv.GuiPitivi._showGui = lambda *args, **kargs : None
 
137
 
133
138
    sys.exit(ptv.main(sys.argv))
134
139
 
135
140
try: