diff options
author | Richard Jones <rjones@redhat.com> | 2010-04-12 18:54:58 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-04-12 18:55:18 +0100 |
commit | 960b99f875162ade09b7db886d1362de7d548792 (patch) | |
tree | 8124ab9207ec9bfeb718d2daeccce7df73ad8a3c | |
parent | ba099ee689b42dd71b05d12583d69424fcfbc217 (diff) | |
download | libguestfs-960b99f875162ade09b7db886d1362de7d548792.tar.gz libguestfs-960b99f875162ade09b7db886d1362de7d548792.tar.xz libguestfs-960b99f875162ade09b7db886d1362de7d548792.zip |
resize: Fix missing newline from end of print.
-rwxr-xr-x | tools/virt-resize | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/virt-resize b/tools/virt-resize index fcd076f8..9ffceb39 100755 --- a/tools/virt-resize +++ b/tools/virt-resize @@ -1085,7 +1085,7 @@ sub expand_partitions # Expand if requested. if ($partitions{$part}->{will_expand_content}) { if (!$quiet && !$debug) { - print __x("Expanding {p} using the '{meth}' method", + print __x("Expanding {p} using the '{meth}' method\n", p => $part, meth => $partitions{$part}->{expand_content_method}); } |