Trivial: adjust import order to fit the import order guideline

debtcollector is third-party library, not standard library, hacking
may remove the check recently, but let's follow the import rule in[1]

[1]http://docs.openstack.org/developer/hacking/#import-order-template

Change-Id: If55e7343e546b49a59cbf74f6bfe574f10d4a9f5
This commit is contained in:
ChangBo Guo(gcb) 2016-07-25 19:24:16 +08:00
parent fbe660df29
commit 2fdc1cf5e9

View File

@ -363,7 +363,6 @@ command line arguments using the SubCommandOpt class:
import argparse
import collections
import copy
from debtcollector import removals
import errno
import functools
import glob
@ -373,6 +372,7 @@ import os
import string
import sys
from debtcollector import removals
import six
from six import moves