We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 779087d commit eaf9546Copy full SHA for eaf9546
2 files changed
docker/Dockerfile
@@ -108,6 +108,15 @@ RUN apt-get install -qy \
108
zile \
109
zlib1g-dev
110
111
+# Postgresql packages
112
+RUN apt-get install -qy \
113
+ postgresql-11 \
114
+ postgresql-server-dev-11
115
+
116
+RUN pip install \
117
+ psycopg2
118
119
120
# Get the key used to sign the libyang repo
121
RUN wget -nv http://download.opensuse.org/repositories/home:liberouter/Debian_9.0/Release.key
122
RUN apt-key add - < Release.key
ietf/nomcom/utils.py
@@ -437,7 +437,7 @@ def get_body(message):
437
'plain')]
438
body = []
439
for part in text_parts:
440
- charset = get_charset(message)
+ charset = get_charset(part)
441
body.append(get_payload_text(part, default_charset=charset))
442
443
return "\n".join(body).strip()
0 commit comments