1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* use easy-to-change triple-quotes for script template

This commit is contained in:
Reinhard Pointner 2013-01-18 11:05:27 +00:00
parent 67f6dc63e1
commit 1ed16c37f2
2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
// PERSONALIZED SETTINGS
def episodeDir = "V:/in/TV"
def episodeFormat = "V:/out/TV/{n}{'/Season '+s}/{episode}"
def movieDir = "V:/in/Movies"
def movieFormat = "V:/out/Movies/{movie}/{movie}"
def episodeDir = '''V:/in/TV'''
def episodeFormat = '''V:/out/TV/{n}{'/Season '+s}/{episode}'''
def movieDir = '''V:/in/Movies'''
def movieFormat = '''V:/out/Movies/{movie}/{movie}'''
// XBMC ON LOCAL MACHINE
def xbmc = ['localhost'] // (use [] to not notify any XBMC instances about updates)

View File

@ -49,7 +49,7 @@ def forceAnime(f) {
}
def forceIgnore(f) {
tryQuietly{ ut_label } =~ /^(?i:Ebook|other|ignore)/
tryQuietly{ ut_label } =~ /^(?i:ebook|other|ignore)/
}