Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Oct 28, 2021
1 parent cffd35e commit 279b592
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/dynamics/arithmetic_dynamics/berkovich_ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,8 +803,8 @@ def __call__(self, x, type_3_pole_check=True):
if not isinstance(x.parent(), Berkovich_Cp_Projective):
try:
x = self.domain()(x)
excep (TypeError, ValueError)t:
raise TypeError('action of dynamical system not defined on %s' %x.parent())
except (TypeError, ValueError):
raise TypeError('action of dynamical system not defined on %s' % x.parent())
if x.parent().is_padic_base() != self.domain().is_padic_base():
raise ValueError('x was not backed by the same type of field as f')
if x.prime() != self.domain().prime():
Expand Down

0 comments on commit 279b592

Please sign in to comment.