Browse Source

Fix for VPN sync_to_ldap

Fabs 10 years ago
parent
commit
308d1cf991
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/vpn/models.py

+ 1 - 1
coin/vpn/models.py

@@ -45,7 +45,7 @@ class VPNSubscription(CoinLdapSyncMixin, models.Model):
         subnets = self.administrative_subscription.ip_subnet.all()
         return [subnet for subnet in subnets if subnet.inet.version == version]
 
-    def sync_to_ldap(self, creation):
+    def sync_to_ldap(self, creation, *args, **kwargs):
         if creation:
             config = LdapVPNConfig()
         else: