diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-09-22 12:35:22 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-09-22 12:35:22 +0300 |
commit | b737857e98ad74d93496d476cd879d833abf6ab3 (patch) | |
tree | 8228a09c8a84b2b786e5819c283798b6b4db3e67 /servo/lib | |
parent | 986537294def57ea1c5c8e669ddac9da01ca9f37 (diff) | |
download | Servo-b737857e98ad74d93496d476cd879d833abf6ab3.tar.gz Servo-b737857e98ad74d93496d476cd879d833abf6ab3.tar.bz2 Servo-b737857e98ad74d93496d476cd879d833abf6ab3.zip |
Removed ref to self
Diffstat (limited to 'servo/lib')
-rw-r--r-- | servo/lib/utils.py | 5 |
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): """ |