LGTM, thanks.
On Wed, Mar 26, 2014 at 2:25 PM, Hrvoje Ribicic <[email protected]> wrote: > This patch does some housecleaning and sorts imports. > > Signed-off-by: Hrvoje Ribicic <[email protected]> > --- > qa/qa_rapi.py | 18 +++++++++--------- > 1 file changed, 9 insertions(+), 9 deletions(-) > > diff --git a/qa/qa_rapi.py b/qa/qa_rapi.py > index 6ea6ea9..1b76d2a 100644 > --- a/qa/qa_rapi.py > +++ b/qa/qa_rapi.py > @@ -1,7 +1,7 @@ > # > # > > -# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Google Inc. > +# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Google Inc. > # > # This program is free software; you can redistribute it and/or modify > # it under the terms of the GNU General Public License as published by > @@ -23,22 +23,22 @@ > > """ > > -import tempfile > +import functools > +import itertools > import random > import re > -import itertools > -import functools > +import tempfile > > -from ganeti import utils > +from ganeti import cli > +from ganeti import compat > from ganeti import constants > from ganeti import errors > -from ganeti import cli > -from ganeti import rapi > +from ganeti import pathutils > from ganeti import objects > from ganeti import query > -from ganeti import compat > from ganeti import qlang > -from ganeti import pathutils > +from ganeti import rapi > +from ganeti import utils > > import ganeti.rapi.client # pylint: disable=W0611 > import ganeti.rapi.client_utils > -- > 1.9.1.423.g4596e3a > > -- Thomas Thrainer | Software Engineer | [email protected] | Google Germany GmbH Dienerstr. 12 80331 München Registergericht und -nummer: Hamburg, HRB 86891 Sitz der Gesellschaft: Hamburg Geschäftsführer: Graham Law, Christine Elizabeth Flores
