~ubuntu-branches/ubuntu/raring/software-center/raring-proposed

« back to all changes in this revision

Viewing changes to softwarecenter/backend/spawn_helper.py

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2012-10-11 15:33:05 UTC
  • mfrom: (195.1.18 quantal)
  • Revision ID: package-import@ubuntu.com-20121011153305-fm5ln7if3rpzts4n
Tags: 5.4.1.1
* lp:~mvo/software-center/reinstall-previous-purchase-token-fix:
  - fix reinstall previous purchases that have a system-wide
    license key LP: #1065481
* lp:~mvo/software-center/lp1060106:
  - Add missing gettext init for utils/update-software-center-agent
    (LP: #1060106)

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        self._child_watch = None
65
65
        self._cmd = None
66
66
        self.needs_auth = False
 
67
        self.no_relogin = False
67
68
        self.ignore_cache = False
68
69
        self.parent_xid = None
69
70
 
76
77
            cmd.append("--needs-auth")
77
78
        if self.ignore_cache:
78
79
            cmd.append("--ignore-cache")
 
80
        if self.no_relogin:
 
81
            cmd.append("--no-relogin")
79
82
        if self.parent_xid:
80
83
            cmd.append("--parent-xid")
81
84
            cmd.append(str(self.parent_xid))