~xubuntu-dev/ubuntu-cdimage/xubuntu-base

« back to all changes in this revision

Viewing changes to lib/cdimage/germinate.py

  • Committer: Colin Watson
  • Date: 2015-11-11 20:06:02 UTC
  • Revision ID: cjwatson@canonical.com-20151111200602-qnvzay2loalmfkxn
Add support for signing with multiple keys.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
from __future__ import print_function
19
19
 
20
 
__metaclass__ = type
21
 
 
22
20
from collections import OrderedDict, defaultdict
23
21
import errno
24
22
import gzip
34
32
from cdimage.mirror import find_mirror
35
33
from cdimage.proxy import proxy_check_call
36
34
 
 
35
__metaclass__ = type
 
36
 
37
37
 
38
38
class GerminateNotInstalled(Exception):
39
39
    pass