Remove incorrect docs about multiple filter options
authorGuido Günther <agx@sigxcpu.org>
Sun, 9 Mar 2014 14:42:51 +0000 (15:42 +0100)
committerGuido Günther <agx@sigxcpu.org>
Sun, 9 Mar 2014 14:42:51 +0000 (15:42 +0100)
Closes: #718536
docs/manpages/gbp.conf.sgml

index 5bed99d520af770388109a116b8565505185989b..5c4f6c9232b4eeff96b87c8ecdda91f9f7d0b8a4 100644 (file)
@@ -84,22 +84,12 @@ option which can be turned into configuration file setting by dropping the
 </programlisting>
 
 <para>
-Notice that some option are actually repeatable, or take Python lists.
+Notice that some option can take Python like lists.
 For example the <xref linkend="man.gbp.import.orig"> commmand has the
 <option>--filter</option>=<parameter>pattern</parameter> option which can
 be truned into a configuration file option like this:
 </para>
 
-<programlisting>
-    [import-orig]
-    filter = .svn
-    filter = .hg
-</programlisting>
-
-<para>
-An alternative way is to write it using Python list syntax:
-</para>
-
 <programlisting>
     [import-orig]
     filter = [ '.svn', '.hg' ]