Skip to content

Commit 236df49

Browse files
committed
Comment fix.
1 parent df2e89d commit 236df49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pyclaw/sharpclaw/solver.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,8 @@ def setup(self,solution):
205205
self.num_ghost = (self.weno_order+1)/2
206206

207207
if self.lim_type == 2 and self.weno_order != 5 and self.kernel_language == 'Python':
208-
raise Exception('Only 5th-order WENO reconstruction is implemented in Python kernels. Use Fortran for higher-order WENO.')
208+
raise Exception('Only 5th-order WENO reconstruction is implemented in Python kernels. \
209+
Use Fortran for higher-order WENO.')
209210
# This is a hack to deal with the fact that petsc4py
210211
# doesn't allow us to change the stencil_width (num_ghost)
211212
state = solution.state

0 commit comments

Comments
 (0)