diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-22 11:03:05 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-22 11:03:05 +0100 |
commit | 228e71fe10128c6f91a6935e6b148c49801bb17f (patch) | |
tree | 93a2661be45a935fd13fb97a093ea4892da2ac40 /src | |
parent | 93b14fcfe5376326632cb04e0c2f0cf1912cdbc6 (diff) | |
download | libguestfs-228e71fe10128c6f91a6935e6b148c49801bb17f.tar.gz libguestfs-228e71fe10128c6f91a6935e6b148c49801bb17f.tar.xz libguestfs-228e71fe10128c6f91a6935e6b148c49801bb17f.zip |
Fix quoting of list args in guestfish manpage.
Diffstat (limited to 'src')
-rwxr-xr-x | src/generator.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generator.ml b/src/generator.ml index beb36708..23738bd9 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -3796,7 +3796,7 @@ and generate_fish_actions_pod () = function | String n -> pr " %s" n | OptString n -> pr " %s" n - | StringList n -> pr " %s,..." n + | StringList n -> pr " '%s ...'" n | Bool _ -> pr " true|false" | Int n -> pr " %s" n | FileIn n | FileOut n -> pr " (%s|-)" n |