Lines 60-66
class RepoSettings(object):
Link Here
|
60 |
if self.repo_config.allow_provide_virtual: |
60 |
if self.repo_config.allow_provide_virtual: |
61 |
qawarnings.add("virtual.oldstyle") |
61 |
qawarnings.add("virtual.oldstyle") |
62 |
|
62 |
|
63 |
if self.repo_config.sign_commit: |
63 |
if self.repo_config.sign_commit and options.mode in ("commit", "fix", "manifest"): |
64 |
if vcs_settings.vcs: |
64 |
if vcs_settings.vcs: |
65 |
func = getattr(self, '_vcs_gpg_%s' % vcs_settings.vcs) |
65 |
func = getattr(self, '_vcs_gpg_%s' % vcs_settings.vcs) |
66 |
func() |
66 |
func() |
67 |
- |
|
|