summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gbp/deb/changelog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/deb/changelog.py b/gbp/deb/changelog.py
index 725e8ba..a483b33 100644
--- a/gbp/deb/changelog.py
+++ b/gbp/deb/changelog.py
@@ -175,14 +175,14 @@ class ChangeLog(object):
"""
The author of the last modification
"""
- return email.Utils.parseaddr(self._cp['Maintainer'])[0]
+ return email.utils.parseaddr(self._cp['Maintainer'])[0]
@property
def email(self):
"""
The author's email
"""
- return email.Utils.parseaddr(self._cp['Maintainer'])[1]
+ return email.utils.parseaddr(self._cp['Maintainer'])[1]
@property
def date(self):