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

Commit

Permalink
fix small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xcaruso committed Apr 14, 2020
1 parent 329fcad commit b78d3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/rings/polynomial/skew_polynomial_ring.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ def __init__(self, base_ring, twist_map, name, sparse, category=None):
self._working_center = self.center()
self._center_variable_name = None
except ValueError:
varname = ''.join(random.choice(string.ascii_lowercase) for i in range(10))
self._center_variable_name = ''.join(random.choice(string.ascii_lowercase) for i in range(10))
pass


Expand Down

0 comments on commit b78d3ef

Please sign in to comment.