LIB: don't use show on String

This commit is contained in:
Julian Ospald 2016-04-11 02:24:23 +02:00
parent 2ae574688b
commit 3d15a66350
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ instance Show FmIOException where
show InvalidFileName = "Invalid file name!"
show (Can'tOpenDirectory fp) = "Can't open directory: "
++ P.fpToString fp
show (CopyFailed str) = "Copying failed: " ++ show str
show (MoveFailed str) = "Moving failed: " ++ show str
show (CopyFailed str) = "Copying failed: " ++ str
show (MoveFailed str) = "Moving failed: " ++ str