Remove newline in if statement

This commit is contained in:
Dylan 2016-02-06 02:36:00 +11:00
parent e6d8fc9c98
commit 84b8b04d83
1 changed files with 1 additions and 2 deletions

3
fetch
View File

@ -1829,8 +1829,7 @@ info () {
underline_color title_color at_color
# Show/Hide subtitles
[ "$stdout_subtitles" == "off" ] && \
string=${string/*: }
[ "$stdout_subtitles" == "off" ] && string=${string/*: }
# If the string isn't empty, print it.
[ ! -z "$string" ] && printf "%s" "${string}${stdout_seperator}"