Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeek committed Mar 5, 2010
1 parent 81b0b90 commit d9a5683
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.py3k
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,7 @@ can be acquired from Bitbucket using Mercurial:
cd nose3
python3 setup.py install

The tests can then be run using the "nosetests3" script installed by the above.
The tests can then be run using the "nosetests3" script installed
by the above (python3 setup.py test doesn't seem to be working with
nose3).

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use_2to3=True,
)

v = file(os.path.join(os.path.dirname(__file__), 'mako', '__init__.py'))
v = open(os.path.join(os.path.dirname(__file__), 'mako', '__init__.py'))
VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1)
v.close()

Expand Down

0 comments on commit d9a5683

Please sign in to comment.