Displaying 2 results from an estimated 2 matches for "subject_prefix".
2018 Aug 06
0
Re: [PATCH] v2v: rhv-plugin: Use string literal concatenation
...t; v2" HEAD~10 libguestfs@redhat.com CC@example.com CC@bar.example.com
# To test, send it to yourself first:
# send-email " v2" HEAD~10 rjones@redhat.com
set -e
smtp=smtp.corp.redhat.com
if [ $# -lt 3 ]; then
echo "send-email: Read the script first."
exit 1
fi
subject_prefix="--subject-prefix=PATCH$1"
shift
# Arguments.
range="$1"
shift
to="$1"
shift
cc=""
for x in "$@"; do
cc="$cc --cc=$x"
done
git send-email \
--compose \
--stat \
--thread --no-chain-reply-to \
--envelope-sender="...
2018 Aug 06
2
Re: [PATCH] v2v: rhv-plugin: Use string literal concatenation
On Mon, Aug 6, 2018 at 11:02 AM Richard W.M. Jones <rjones@redhat.com>
wrote:
> On Sun, Aug 05, 2018 at 04:37:31PM +0300, Nir Soffer wrote:
> > When splitting long strings over multiple lines, we can use string
> > literal concatenation instead of +.
> >
> > See
> https://docs.python.org/3/reference/lexical_analysis.html#string-literal-concatenation
> >