summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-03-09 15:42:51 +0100
committerGuido Günther <agx@sigxcpu.org>2014-03-09 15:42:51 +0100
commitd000b0c6660811a8fda7e8f3bb1223269cf1b646 (patch)
tree45255e62bed38a3a1ce1127a438dd12a9031f23a
parent38cfa6cb4c8026b54a29434f786e818977fb51e3 (diff)
Remove incorrect docs about multiple filter options
Closes: #718536
-rw-r--r--docs/manpages/gbp.conf.sgml12
1 files changed, 1 insertions, 11 deletions
diff --git a/docs/manpages/gbp.conf.sgml b/docs/manpages/gbp.conf.sgml
index 5bed99d5..5c4f6c92 100644
--- a/docs/manpages/gbp.conf.sgml
+++ b/docs/manpages/gbp.conf.sgml
@@ -84,7 +84,7 @@ 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:
@@ -92,16 +92,6 @@ be truned into a configuration file option like this:
<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' ]
</programlisting>