As long as gpgv takes multiple --keyring arguments as you imply here the change looks fine.
Just some comments about readability. I've just learned to do subprocess code like this over time to (possibly) avoid having to type 'man some-command' in order to figure out:
some-command -acf foo --flag1 --flag2 foo2 bar
Just better to do:
some-command --activate --configure --file=foo --flag1 --flag2=foo2 bar
As long as gpgv takes multiple --keyring arguments as you imply here the change looks fine.
Just some comments about readability. I've just learned to do subprocess code like this over time to (possibly) avoid having to type 'man some-command' in order to figure out:
some-command -acf foo --flag1 --flag2 foo2 bar
Just better to do:
some-command --activate --configure --file=foo --flag1 --flag2=foo2 bar