Преглед на файлове

Fix typo, reorder imports

Gabriel-Adrian Samfira преди 6 години
родител
ревизия
ecc5076fb2
променени са 2 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 2 2
      coriolis/osmorphing/debian.py
  2. 1 1
      coriolis/utils.py

+ 2 - 2
coriolis/osmorphing/debian.py

@@ -2,10 +2,10 @@
 # All Rights Reserved.
 # All Rights Reserved.
 
 
 import os
 import os
-import yaml
-
 from io import StringIO
 from io import StringIO
 
 
+import yaml
+
 from coriolis import utils
 from coriolis import utils
 from coriolis.osmorphing import base
 from coriolis.osmorphing import base
 
 

+ 1 - 1
coriolis/utils.py

@@ -616,7 +616,7 @@ class Grub2ConfigEditor(object):
     /etc/default/grub. This class tries to preserve commented
     /etc/default/grub. This class tries to preserve commented
     and empty lines.
     and empty lines.
     NOTE: This class does not actually write to file during
     NOTE: This class does not actually write to file during
-    commit. Rhather, it will mutate it's internal view iof the
+    commit. Rhather, it will mutate it's internal view of the
     contents of that file with the latest changes made.
     contents of that file with the latest changes made.
     Use dump() to get the file contents.
     Use dump() to get the file contents.
     """
     """