diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-03 17:22:17 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-03 17:22:17 -0400 |
commit | 7b2762fb9226ca76dce6510dd821bfe432c1cfa2 (patch) | |
tree | 1ab2c8580d30faa7022e5a49185b4311c16e0313 /Command/Init.hs | |
parent | 657395b628b46b378eda77d5dc6edcdde7183b38 (diff) |
better quoting of description via show
Diffstat (limited to 'Command/Init.hs')
-rw-r--r-- | Command/Init.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Init.hs b/Command/Init.hs index 2c5fdc2fc..661835169 100644 --- a/Command/Init.hs +++ b/Command/Init.hs @@ -47,7 +47,7 @@ perform description = do showLongNote $ "This is a bare repository, so its description cannot be committed.\n" ++ "To record the description, run this command in a clone of this repository:\n" ++ - " git annex describe " ++ (show u) ++ " '" ++ description ++ "'\n\n" + " git annex describe " ++ show u ++ " " ++ show description ++ "\n\n" return $ Just $ return True else do describeUUID u description |