Fix fabfile for db backup.

master
Nick Sergeant 2014-10-20 10:36:52 -04:00
parent e13d3ab54d
commit a66b493b2d
1 changed files with 1 additions and 1 deletions

2
fabfile.py vendored
View File

@ -36,7 +36,7 @@ def db_backup():
snipt_bucket = conn.get_bucket('snipt')
k = Key(snipt_bucket)
k.key = filename
k.set_contents_from_filename(filename)
k.set_contents_from_filename(path)
local('rm {}'.format(path))
def db():