Show More
@@ -39,6 +39,10 b" configitem('gpg', 'cmd'," | |||
|
39 | 39 | configitem('gpg', 'key', |
|
40 | 40 | default=None, |
|
41 | 41 | ) |
|
42 | configitem('gpg', '.*', | |
|
43 | default=None, | |
|
44 | generic=True, | |
|
45 | ) | |
|
42 | 46 | |
|
43 | 47 | class gpg(object): |
|
44 | 48 | def __init__(self, path, key=None): |
@@ -216,7 +220,7 b' def sigcheck(ui, repo, rev):' | |||
|
216 | 220 | def keystr(ui, key): |
|
217 | 221 | """associate a string to a key (username, comment)""" |
|
218 | 222 | keyid, user, fingerprint = key |
|
219 |
comment = ui.config("gpg", fingerprint |
|
|
223 | comment = ui.config("gpg", fingerprint) | |
|
220 | 224 | if comment: |
|
221 | 225 | return "%s (%s)" % (user, comment) |
|
222 | 226 | else: |
General Comments 0
You need to be logged in to leave comments.
Login now