From b8e8b187eaa171e013fa96ae931c2aef744e4330 Mon Sep 17 00:00:00 2001 From: adilger Date: Tue, 2 Aug 2005 05:52:43 +0000 Subject: [PATCH] Branch b1_4 Fix indenting problem in lconf causing a use-before-assignment error. Gotta love python. b=7221 --- lustre/utils/lconf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/utils/lconf b/lustre/utils/lconf index ecb62a8..5bec26f 100755 --- a/lustre/utils/lconf +++ b/lustre/utils/lconf @@ -1733,8 +1733,8 @@ class MDSDEV(Module): # self.inode_size = 256 else: self.inode_size = 512 - - debug('stripe_count %d, inode_size %d', stripe_count, self.inode_size) + debug('stripe_count %d, inode_size %d', + stripe_count, self.inode_size) self.target_dev_uuid = self.uuid self.uuid = target_uuid -- 1.8.3.1