aboutsummaryrefslogtreecommitdiffstats
path: root/servo/lib/utils.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-09-22 12:35:22 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-09-22 12:35:22 +0300
commitb737857e98ad74d93496d476cd879d833abf6ab3 (patch)
tree8228a09c8a84b2b786e5819c283798b6b4db3e67 /servo/lib/utils.py
parent986537294def57ea1c5c8e669ddac9da01ca9f37 (diff)
downloadServo-b737857e98ad74d93496d476cd879d833abf6ab3.tar.gz
Servo-b737857e98ad74d93496d476cd879d833abf6ab3.tar.bz2
Servo-b737857e98ad74d93496d476cd879d833abf6ab3.zip
Removed ref to self
Diffstat (limited to 'servo/lib/utils.py')
-rw-r--r--servo/lib/utils.py5
1 files changed, 2 insertions, 3 deletions
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):
"""