aboutsummaryrefslogtreecommitdiff
path: root/lib/keyring/crypt.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-02-01 14:07:24 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-02-01 14:07:24 -0200
commitec02fa7e647d7cd2b8b93a779fd16c655abf38ab (patch)
tree8e8a81df9928b39dbc5d6091ef1a659cd16de552 /lib/keyring/crypt.rb
parent76d0fabcaee4b8a6bdf8c00df45b1813b87e22f2 (diff)
downloadkeyringer-ec02fa7e647d7cd2b8b93a779fd16c655abf38ab.tar.gz
keyringer-ec02fa7e647d7cd2b8b93a779fd16c655abf38ab.tar.bz2
Moving Fs to backend
Diffstat (limited to 'lib/keyring/crypt.rb')
-rw-r--r--lib/keyring/crypt.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/keyring/crypt.rb b/lib/keyring/crypt.rb
index 06b8ad7..8f0ac5d 100644
--- a/lib/keyring/crypt.rb
+++ b/lib/keyring/crypt.rb
@@ -21,7 +21,7 @@
module Keyring
class Crypt
def decrypt(filename)
- file = Fs.new()
+ file = Backend::Fs.new()
content = file.get_as_string(filename)
crypt = Backend::Crypt.new(nil)
return crypt.decrypt(content)