Ticket #21590: patch-sipconfig_py

File patch-sipconfig_py, 350 bytes (added by Veence (Vincent), 15 years ago)

This patch fixes a vicious bug

Line 
1--- sipconfig.py.orig   2009-09-24 16:49:38.000000000 +0200
2+++ sipconfig.py        2009-09-24 16:50:05.000000000 +0200
3@@ -211,7 +211,7 @@
4 
5         value is the value to append.
6         """
7-        if value not in self._list:
8+        if value not in self._list or value == "-arch":
9             self._list.append(value)
10 
11     def lextend(self, value):