[Freeipa-devel] [PATCH] default values in host plugin

Jason Gerard DeRose jderose at redhat.com
Wed Apr 8 04:48:57 UTC 2009


ack.

One Python style nitpick: you shouldn't import multiple packages/modules
on the same line unless they're all from the same package (meaning
you're using the "from" keyword).

So:

  import sys
  import os
  import platform

Instead of:

  import sys, os, platform

But this would be okay:

  from platform import architecture, system, uname








More information about the Freeipa-devel mailing list