Skip to content

Commit

Permalink
fix file path in Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zzyztyy committed Nov 13, 2018
1 parent 50898b9 commit 3369cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyIGRF/loadCoeffs.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def loadCoeffs(filename):
return gh


gh = loadCoeffs(os.path.dirname(os.path.abspath(__file__))+'\\src\\igrf12coeffs.txt')
gh = loadCoeffs(os.path.dirname(os.path.abspath(__file__))+'/src/igrf12coeffs.txt')


def getCoeffs(date):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="pyIGRF",
version="0.1.7",
version="0.1.8",
author="zzyztyy",
author_email="2375672032@qq.com",
description="IGRF-12 Model by Python",
Expand Down

0 comments on commit 3369cca

Please sign in to comment.