~ubuntu-branches/ubuntu/raring/hplip/raring

« back to all changes in this revision

Viewing changes to ui4/plugindialog.py

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-10-06 15:03:44 UTC
  • mfrom: (1.6.1) (20.1.16 quantal)
  • Revision ID: package-import@ubuntu.com-20121006150344-2p3xz26br0t3hu2q
Tags: 3.12.10-1
* New upstream release
  - Fixes "Network scanning fails (Closes: #683033)
* quilt refresh hplip-syslog-fix-debug-messages-to-error.dpatch
* Fix "error in clean build env" updated debian/rules (Closes: #687129)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
                                    PLUGIN_INSTALL_ERROR_PLUGIN_FILE_CHECKSUM_ERROR, \
35
35
                                    PLUGIN_INSTALL_ERROR_NO_NETWORK, \
36
36
                                    PLUGIN_INSTALL_ERROR_DIRECTORY_ERROR, \
37
 
                                    PLUGIN_INSTALL_ERROR_UNABLE_TO_RECV_KEYS
 
37
                                    PLUGIN_INSTALL_ERROR_UNABLE_TO_RECV_KEYS,  \
 
38
                                    MODE_CHECK
38
39
 
39
40
# Qt
40
41
from PyQt4.QtCore import *
57
58
        self.plugin_reason = plugin_reason
58
59
        self.plugin_path = None
59
60
        self.result = False
60
 
        self.core = CoreInstall()
 
61
        self.core = CoreInstall(MODE_CHECK)
61
62
        self.core.set_plugin_version()
62
63
        self.setupUi(self)
63
64