From 5859c5647504493875b38f33ffeeb1f078e388f1 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Jan 13 2012 23:39:43 +0000 Subject: Don't pass self to create_curl twice --- diff --git a/src/pyrpkg/fedpkg/__init__.py b/src/pyrpkg/fedpkg/__init__.py index 8b1062a..1995cce 100644 --- a/src/pyrpkg/fedpkg/__init__.py +++ b/src/pyrpkg/fedpkg/__init__.py @@ -231,7 +231,7 @@ class Commands(pyrpkg.Commands): # Overloaded to add cert files to curl objects # Call the super class - curl = super(Commands, self)._create_curl(self) + curl = super(Commands, self)._create_curl() # Set the users Fedora certificate: if os.path.exists(self.cert_file):