From b737857e98ad74d93496d476cd879d833abf6ab3 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 22 Sep 2015 12:35:22 +0300 Subject: Removed ref to self --- servo/lib/utils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'servo/lib/utils.py') diff --git a/servo/lib/utils.py b/servo/lib/utils.py index f3d5640..a6b9e78 100644 --- a/servo/lib/utils.py +++ b/servo/lib/utils.py @@ -10,9 +10,8 @@ def strip_keypass(keypass, infile, outfile): Strips a passphrase from a private key """ import subprocess - keypass = self.cleaned_data['gsx_keypass'] - subprocess.call(['openssl', 'rsa', '-passin', - 'pass:' + keypass, '-in', infile, '-out', outfile]) + subprocess.call(['openssl', 'rsa', '-passin', 'pass:' + keypass, + '-in', infile, '-out', outfile]) def multiprint(*args): """ -- cgit v1.2.3