Skip to content

Commit

Permalink
Fix backup
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath committed Aug 22, 2015
1 parent dc744a5 commit ec2a0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def get(self):
class ScheduledBackup(baserequesthandler.RequestHandler):

def get(self):
backup_folder = datetime.now().strftime('%y-%m-%d')
backup_folder = datetime.datetime.now().strftime('%y-%m-%d')
bucket_name = 'ffcapp.appspot.com/backups/%s' % backup_folder
params = {
'filesystem' : 'gs',
Expand Down

0 comments on commit ec2a0f0

Please sign in to comment.