~kelemeng/aptdaemon/bug640972

« back to all changes in this revision

Viewing changes to aptdaemon/debconf.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2010-07-02 10:28:33 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20100702102833-3iqalyretgyej9o2
Tags: 0.31+bzr416-0ubuntu1
* updated to current bzr
  - fixes STAT_FAILED vs STAT_ERROR crash
* debian/patches/01_vendor-keys-download.patch:
  - add changes from lp:~mvo/aptdaemon/download-vendor-keys
    to support downloading repository vendor keys via https
* debian/patches/03_auth_me_less.patch: 
  - updated to current code
* debian/control:
  - use DH_CENTRAL=include-links

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
        self.socket.close()
96
96
        gobject.source_remove(self._listener_id)
97
97
        self._listener_id = None
 
98
        if self.temp_dir:
 
99
            try:
 
100
                os.remove(self.socket_path)
 
101
                os.rmdir(self.temp_dir)
 
102
            except OSError:
 
103
                pass
98
104
 
99
105
    def _accept_connection(self, socket, condition):
100
106
        if self._active_conn: