Skip to content

Commit

Permalink
fix octal in Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Jun 5, 2016
1 parent 4012321 commit de87c8d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ parts
bin
var
sdist
MANIFEST
develop-eggs
.installed.cfg
lib
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
include LICENSE.rst
include README.rst
include ez_setup.py

graft doc

prune doc/_build
2 changes: 1 addition & 1 deletion hpsspy/test/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_HpssFile(self):
names = ('boss', 'cosmo', 'desi', 'test')
links = ('/nersc/projects/boss', '/nersc/projects/cosmo',
'/nersc/projects/desi', None)
modes = (0777, 0777, 0777, 02755)
modes = (511, 511, 511, 1517)
mtimes = (datetime.datetime(2008, 4, 3, 0, 0, 0),
datetime.datetime(2014, 8, 22, 0, 0, 0),
datetime.datetime(2013, 12, 16, 0, 0, 0),
Expand Down

0 comments on commit de87c8d

Please sign in to comment.