~rbalint/merge-o-matic/merge-o-matic-comment

« back to all changes in this revision

Viewing changes to syndicate.py

  • Committer: Colin Watson
  • Date: 2016-11-13 03:15:26 UTC
  • Revision ID: cjwatson@canonical.com-20161113031526-z8q46xj73781ml7g
Sort imports and apply PEP-8 import ordering.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
from __future__ import print_function, with_statement
21
21
 
22
 
import os
23
22
import bz2
24
 
import fcntl
25
 
import logging
26
 
 
27
23
from email.MIMEMultipart import MIMEMultipart
28
24
from email.MIMEText import MIMEText
29
25
from email.Utils import formatdate, make_msgid, parseaddr
 
26
import fcntl
30
27
from fnmatch import fnmatch
 
28
import logging
 
29
import os
31
30
from smtplib import SMTP, SMTPSenderRefused, SMTPDataError
32
31
 
33
32
from deb.controlfile import ControlFile