Skip to content

Commit

Permalink
Merge pull request #26 from alexmaul/fix_read_refval
Browse files Browse the repository at this point in the history
Fix read refval
  • Loading branch information
alexmaul authored Mar 13, 2019
2 parents 84c055a + 73a771c commit 17a90e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import sys
sys.path.insert(0, os.path.abspath('../..'))
import trollbufr
from trollbufr.version import __version__
from trollbufr.version import version

# -- General configuration ------------------------------------------------

Expand Down Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = __version__
#version = __version__
# The full version, including alpha/beta/rc tags.
release = __version__
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ To-Do
-----
There are still things to do:

- Support Python3
- Implement the remaining obscure operators
- Create working unit-tests.
- Implement the remaining obscure operators.

So, get involved at PyTroll_ or GitHub_!

Expand Down
4 changes: 2 additions & 2 deletions trollbufr/coder/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def fun_03_r(subset, descr):
if an == 0:
subset._alter.refval = {}
else:
subset._read_refval(subset)
subset._read_refval()
logger.debug("OP refval -> %s" % subset._alter.refval)
return None

Expand All @@ -159,7 +159,7 @@ def fun_03_w(subset, descr):
if an == 0:
subset._alter.refval = {}
else:
subset._write_refval(subset)
subset._write_refval()
logger.debug("OP refval -> %s" % subset._alter.refval)
return None

Expand Down
2 changes: 1 addition & 1 deletion trollbufr/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@

__major__ = "0"
__minor__ = "10"
__patch__ = "2"
__patch__ = "3"

version = ".".join([__major__, __minor__, __patch__])

0 comments on commit 17a90e0

Please sign in to comment.