fix bad indendation levels with last fix
Tyler Riddle [Mon, 15 Oct 2012 17:26:46 +0000 (10:26 -0700)]
lib/Object/Remote/FatNode.pm

index c407135..3985027 100644 (file)
@@ -93,8 +93,8 @@ sub generate_fatpack_hash {
 }
 
 my @segments = (
-    map(generate_fatpack_hash('fatpacked', $_), sort map $mods{$_}, @non_core),
-    map(generate_fatpack_hash('fatpacked_extra', $_), sort map $mods{$_}, @core_non_arch),
+  map(generate_fatpack_hash('fatpacked', $_), sort map $mods{$_}, @non_core),
+  map(generate_fatpack_hash('fatpacked_extra', $_), sort map $mods{$_}, @core_non_arch),
 );
 
 our $DATA = join "\n", $start, @segments, $end;