X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Fplugins%2Fdavical.rb;fp=lib%2Frm%2Fplugins%2Fdavical.rb;h=3526dcff2fa4f9fc57950c32ac50e34c44d6872c;hp=f7d116e0e783a08364701c97334668d04ca14d45;hb=f819b178c5c1cb8adda0182c610e5c52fad8bea7;hpb=8a3e804a4c5f33bee1d80243be6b139e45f07a48 diff --git a/lib/rm/plugins/davical.rb b/lib/rm/plugins/davical.rb index f7d116e..3526dcf 100644 --- a/lib/rm/plugins/davical.rb +++ b/lib/rm/plugins/davical.rb @@ -16,7 +16,7 @@ class DavicalRm # Delete the given username. DAViCal uses foreign keys properly # and only supports postgres, so we let the ON DELETE CASCADE # trigger handle most of the work. - raise NonexistentUserError.new(user) if not user_exists(user) + raise NonexistentUserError.new(user.to_s()) if not user_exists(user) sql_queries = ['DELETE FROM usr WHERE username = $1'] @@ -30,7 +30,7 @@ class DavicalRm @db_pass) sql_queries.each do |sql_query| - connection.query(sql_query, [user]) + connection.query(sql_query, [user.to_s()]) end connection.close()