Package: jack / 3.1.1+cvs20050801-31

82_fix_append_year_doc.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Fix the documentation of --append-year.  The docs used to say it's a
boolean whereas it's really a string. (A string makes sense because
it's more flexible.)

--- a/jack.man	2007-11-09 19:25:01.000000000 +0100
+++ b/jack.man	2007-11-09 19:31:04.000000000 +0100
@@ -102,8 +102,9 @@
 .PP
 Jack understands the following options:
 .TP
-.B \-\-append-year=bool
-if known, append the year to dir in the format " (%y)"
+.B \-\-append-year string
+append this string to the directory name (useful with %y to add the year
+an album was released)
 .TP
 .B \-b, \-\-bitrate int
 target bitrate (in kbit/s, default is 160).
--- a/jack_config.py	2007-11-09 19:31:13.000000000 +0100
+++ b/jack_config.py	2007-11-09 19:32:05.000000000 +0100
@@ -166,8 +166,8 @@
         },
     'append_year': {
         'type': types.StringType,
-        'val': " (%y)",
-        'usage': "if known, append the year to dir",
+        'val': "",
+        'usage': "append this string to the directory name",
         'long': 'AUTO',
         },
     'dir_template': {