Skip to content

Commit

Permalink
Merge pull request PaddlePaddle#11960 from reyoung/feature/error_str
Browse files Browse the repository at this point in the history
Fix import error
  • Loading branch information
typhoonzero committed Jul 4, 2018
2 parents 26ff5a5 + a1e88c4 commit 3d99e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/paddle/fluid/framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"""NOTE: You may need to run \"export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH\"
if you encounters \"libmkldnn.so not found\" errors. If you have python
installed in other directory, replace \"/usr/local/lib\" with your own
directory. The original error is: """ % str(e))
directory. The original error is: \n""" + e.message)
except Exception, e:
raise e
import unique_name
Expand Down

0 comments on commit 3d99e2e

Please sign in to comment.