iro/anbieter/sipgate.py
changeset 37 6e5bd561ddd0
parent 36 178fd966423d
child 59 642098115855
--- a/iro/anbieter/sipgate.py	Sun Feb 07 18:04:53 2010 +0100
+++ b/iro/anbieter/sipgate.py	Mon Feb 08 01:18:59 2010 +0100
@@ -34,10 +34,10 @@
         self.user=user
         self.password=password
 
-    def read_basic_config(self,filename):
+    def read_basic_config(self,filenames):
         """Read basic options from the config file"""
         cp = ConfigParser.ConfigParser()
-        cp.read([filename])
+        cp.read(filenames)
         self.user=cp.get(self.section, 'user')
         self.password=cp.get(self.section, 'password')