diff options
Diffstat (limited to 'gbp/deb')
-rw-r--r-- | gbp/deb/changelog.py | 6 | ||||
-rw-r--r-- | gbp/deb/source.py | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/gbp/deb/changelog.py b/gbp/deb/changelog.py index 2d2f0168..2857431f 100644 --- a/gbp/deb/changelog.py +++ b/gbp/deb/changelog.py @@ -168,12 +168,6 @@ class ChangeLog(object): """ return self._cp.has_key('Epoch') - def is_native(self): - """ - Whether this is a native Debian package - """ - return not '-' in self.version - @property def author(self): """ diff --git a/gbp/deb/source.py b/gbp/deb/source.py index 0944ce1a..1e873129 100644 --- a/gbp/deb/source.py +++ b/gbp/deb/source.py @@ -69,7 +69,7 @@ class DebianSource(object): pass # Fall back to changelog parsing try: - return self.changelog.is_native() + return not '-' in self.changelog.version except IOError as e: raise DebianSourceError("Failed to determine source format: %s" % e) |