Skip to content

Commit

Permalink
Typo in build script prevented date from being formatted correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
1ec5 committed Aug 10, 2008
1 parent b98de42 commit a786dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def main():
stdout=subprocess.PIPE,
shell=True).communicate()[0]
version = "%i.%s" % (AVIM_VERSION, revision) if AVIM_VERSION else revision
today = DATE or date.today().strftime("%A, %B %e, %Y")
today = (DATE or date.today()).strftime("%A, %B %e, %Y")
year = date.today().year

# Read arguments from command line.
Expand Down

0 comments on commit a786dfa

Please sign in to comment.