Skip to content

Commit

Permalink
Cosmetics: Shorten line.
Browse files Browse the repository at this point in the history
  • Loading branch information
thmo committed Oct 1, 2010
1 parent 86a599b commit b3d247e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion master/setup.py
Expand Up @@ -155,7 +155,8 @@ class our_sdist(sdist):
def make_release_tree(self, base_dir, files):
sdist.make_release_tree(self, base_dir, files)
# ensure there's a buildbot/VERSION file
open(os.path.join(base_dir, 'buildbot', 'VERSION'), 'w').write(version)
fn = os.path.join(base_dir, 'buildbot', 'VERSION')
open(fn, 'w').write(version)


long_description="""
Expand Down

0 comments on commit b3d247e

Please sign in to comment.