Skip to content

Commit

Permalink
MAINT: fix runtests.py issue when run with python -OO
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Jul 26, 2015
1 parent a97926c commit bf4ea0e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@
'/usr/local/lib/ccache', '/usr/local/lib/f90cache']

# ---------------------------------------------------------------------
if __doc__ is None:
__doc__ = "Run without -OO if you want usage info"
else:
__doc__ = __doc__.format(**globals())

__doc__ = __doc__.format(**globals())

import sys
import os
Expand Down

0 comments on commit bf4ea0e

Please sign in to comment.