]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph_disk: fix a jewel checkin test break 12592/head
authorJeff Layton <jlayton@redhat.com>
Tue, 20 Dec 2016 19:44:04 +0000 (14:44 -0500)
committerJeff Layton <jlayton@redhat.com>
Tue, 20 Dec 2016 19:44:04 +0000 (14:44 -0500)
Silly python:

    ceph_disk/main.py:173:1: E305 expected 2 blank lines after class or function definition, found 1
    ceph_disk/main.py:5011:1: E305 expected 2 blank lines after class or function definition, found 1

Signed-off-by: Jeff Layton <jlayton@redhat.com>
src/ceph-disk/ceph_disk/main.py

index 89374272109450a43b93eb00a7803dbfba80cb6a..4b79f50cb9bbbc9a3f6456c60eecdb587a4ff02b 100755 (executable)
@@ -170,6 +170,7 @@ class Ptype(object):
                 return True
         return False
 
+
 DEFAULT_FS_TYPE = 'xfs'
 SYSFS = '/sys'
 
@@ -5008,6 +5009,7 @@ def main_catch(func, args):
 def run():
     main(sys.argv[1:])
 
+
 if __name__ == '__main__':
     main(sys.argv[1:])
     warned_about = {}