diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2016-03-02 16:00:01 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2016-03-02 16:00:01 +0100 |
commit | f24d9457f56f60aa927600261500e4ca681d0033 (patch) | |
tree | 6a0265038fbc6520703b41f1b684aa401a47bbdc /python/astra/data3d.py | |
parent | 14bef5ea534e4aa4e6d0819e728d0a8d2b0b7925 (diff) | |
parent | 0fb04ca6fb4fca23b9d1b885b9f075a90542997b (diff) | |
download | astra-f24d9457f56f60aa927600261500e4ca681d0033.tar.gz astra-f24d9457f56f60aa927600261500e4ca681d0033.tar.bz2 astra-f24d9457f56f60aa927600261500e4ca681d0033.tar.xz astra-f24d9457f56f60aa927600261500e4ca681d0033.zip |
Merge pull request #31 from dmpelt/small-fixes
Fix small Python errors
Diffstat (limited to 'python/astra/data3d.py')
-rw-r--r-- | python/astra/data3d.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/astra/data3d.py b/python/astra/data3d.py index e5ef6b0..f143659 100644 --- a/python/astra/data3d.py +++ b/python/astra/data3d.py @@ -89,7 +89,7 @@ def get_single(i): :returns: :class:`numpy.ndarray` -- The object data. """ - return g.get_single(i) + return d.get_single(i) def store(i,data): """Fill existing 3D object with data. |