diff options
author | Sean Finney <seanius@seanius.net> | 2009-12-02 20:43:28 +0100 |
---|---|---|
committer | Sean Finney <seanius@seanius.net> | 2009-12-02 20:43:28 +0100 |
commit | 4693d6a1c73931f0a12687000ab42bec86a7dd83 (patch) | |
tree | 15b32345e7e1c3790c0be31bf85ad59f7357ce28 | |
parent | fb972e3fea45080c1cc84da097e8ebb3e6f20712 (diff) | |
download | patch-tracker-4693d6a1c73931f0a12687000ab42bec86a7dd83.tar.gz |
use "Debian-diff" as "type" for both 1.0 and 3.0 (quilt) formats
there doesn't really seem to be a reason to have it apart from
identifying packages that are native and non-native.
-rwxr-xr-x | patchtracker/SourceArchive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patchtracker/SourceArchive.py b/patchtracker/SourceArchive.py index da18e83..c4a62cd 100755 --- a/patchtracker/SourceArchive.py +++ b/patchtracker/SourceArchive.py @@ -133,7 +133,7 @@ class SourcePackage: self.debtar_name=f['name'] self.debtar_size=f['size'] self.debtar_md5sum=f['md5sum'] - self.type = "Debian-tar" + self.type = "Debian-diff" def __str__(self): return self.name |