Skip to content

Commit

Permalink
fixed bug in appier expires
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jan 29, 2015
1 parent 5ca92a3 commit 787734b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appier/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,7 @@ def send_path(self, file_path, url_path = None, cache = False):
# a string based value in order to be set in the headers
current = datetime.datetime.utcnow()
target = current + self.cache
target_s = target.strftime("%a, %d %b %Y %H:%M:%S UTC")
target_s = target.strftime("%a, %d %b %Y %H:%M:%S GMT")

# sets the complete set of headers expected for the current request
# this is done before the field yielding operation so that the may
Expand Down

0 comments on commit 787734b

Please sign in to comment.