irkerd: Split imported modules onto their own lines
authorW. Trevor King <wking@tremily.us>
Fri, 7 Mar 2014 04:21:05 +0000 (20:21 -0800)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 11 Mar 2014 04:43:14 +0000 (00:43 -0400)
commit14c51234d80471d44c5bed388a236f64b57e8bbf
tree965326497aecaa553bace0881ce7ead151ec6067
parent8468af97bdd1e4ceaad9a68204565cfd808564fd
irkerd: Split imported modules onto their own lines

Following PEP 8 [1]:

  Imports should usually be on separate lines, e.g.:

    Yes: import os
         import sys

    No:  import sys, os

This also makes it easier to read diffs that add and remove imports,
since you won't need a word-diff to see exactly what changed.

[1]: http://legacy.python.org/dev/peps/pep-0008/#imports

Conflicts:
irkerd
irkerd