diff --git a/source/net/sourceforge/filebot/ui/rename/MovieFormatter.java b/source/net/sourceforge/filebot/ui/rename/MovieFormatter.java index b9e7c86e..97da3414 100644 --- a/source/net/sourceforge/filebot/ui/rename/MovieFormatter.java +++ b/source/net/sourceforge/filebot/ui/rename/MovieFormatter.java @@ -17,13 +17,13 @@ class MovieFormatter implements MatchFormatter { return match.getValue() instanceof MoviePart; } - + @Override public String preview(Match match) { return format(match); } - + @Override public String format(Match match) { MoviePart video = (MoviePart) match.getValue(); @@ -32,8 +32,9 @@ class MovieFormatter implements MatchFormatter { // format as single-file or multi-part movie name.format("%s (%d)", video.getName(), video.getYear()); - if (video.getPartCount() > 1) - name.format(" CD%d", video.getPartIndex() + 1); + if (video.getPartCount() > 1) { + name.format(".CD%d", video.getPartIndex()); + } // remove path separators if the name contains any / or \ return replacePathSeparators(name.out().toString());