~ubuntu-branches/ubuntu/natty/muon/natty

« back to all changes in this revision

Viewing changes to kded/distupgradeevent/distupgradeevent.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2011-02-17 13:14:28 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110217131428-23qtgy4967llczwh
Tags: 1.1.1-0ubuntu1
* New upstream bugfix release
* Update the Homepage field in debian/control to the new projects.kde.org
  home page.
* Update the upstream name field in debian/copyright to "Muon Package
  Management Suite" to reflect branding changes.
* Update the Source field in debian/copyright to the new KDE Git repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
{
38
38
    QString checkerFile = KStandardDirs::locate("appdata", "releasechecker");
39
39
    KProcess checkerProcess;
40
 
    checkerProcess.setProgram(QStringList() << checkerFile);
 
40
    checkerProcess.setProgram(QStringList() << "/usr/bin/python" << checkerFile);
41
41
 
42
42
    if (checkerProcess.execute() == 0) {
43
43
        return true;