summaryrefslogtreecommitdiff
path: root/src/mailman/model/uid.py
diff options
context:
space:
mode:
authorBarry Warsaw2015-12-29 17:56:10 -0500
committerBarry Warsaw2015-12-29 17:56:10 -0500
commit8e69b848270da6ba4852f8c6dfdeeed8124ab024 (patch)
treeee1d95464be55662ef7ea3b6a8c08ea7218214fc /src/mailman/model/uid.py
parent1602cecded07961585838a31758147e76584e957 (diff)
downloadmailman-8e69b848270da6ba4852f8c6dfdeeed8124ab024.tar.gz
mailman-8e69b848270da6ba4852f8c6dfdeeed8124ab024.tar.zst
mailman-8e69b848270da6ba4852f8c6dfdeeed8124ab024.zip
Diffstat (limited to 'src/mailman/model/uid.py')
-rw-r--r--src/mailman/model/uid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/model/uid.py b/src/mailman/model/uid.py
index 40d137ee0..750f092cc 100644
--- a/src/mailman/model/uid.py
+++ b/src/mailman/model/uid.py
@@ -50,12 +50,12 @@ class UID(Model):
@dbconnection
def __init__(self, store, uid):
- super(UID, self).__init__()
+ super().__init__()
self.uid = uid
store.add(self)
def __repr__(self):
- return '<UID {0} at {1}>'.format(self.uid, id(self))
+ return '<UID {} at {}>'.format(self.uid, id(self))
@staticmethod
@dbconnection