~ubuntu-branches/ubuntu/natty/quickly/natty

« back to all changes in this revision

Viewing changes to data/templates/ubuntu-project/edit.py

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-09-14 17:54:39 UTC
  • Revision ID: james.westby@ubuntu.com-20090914175439-s71r70gqgyvmg4aq
Tags: 0.2.3
* New release:
 + Quickly Core:
  - Fix tutorial command not shown outside a project
    (previously overwriten because of = instead of extend())
  - Bump requirement on distutilsextra to 2.10 to use desktopcouch bug
    fixing
 + ubuntu-project Template:
  - Launch gedit in background, keep default for others (LP: #425305)
  - Focus is on the main window file when executing quickly glade
  - Add Launchpad display name to DEBEMAIL
 + common:
  - updated translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
elif default_editor:
65
65
    editor = default_editor
66
66
 
67
 
print "%s %s" % (editor, filelist)
 
67
# if editor is still gedit, launch it in background
 
68
if editor == "gedit":
 
69
    filelist += " &"
68
70
 
69
71
os.system("%s %s" % (editor, filelist))