Skip to content

Commit

Permalink
trac #3098: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Willem Jan Palenstijn committed May 3, 2008
1 parent 8488d2a commit 58bd028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/interfaces/singular.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def clear(self, var):
"""
Clear the variable named var.
"""
self._eval_line('if(defined(%s)>0){kill %s;}'%(var,var), wait_for_prompt=False)
self._eval_line('if(defined(%s)>0){kill %s;};'%(var,var), wait_for_prompt=False)

def _create(self, value, type='def'):
name = self._next_var_name()
Expand Down

0 comments on commit 58bd028

Please sign in to comment.