summaryrefslogtreecommitdiff
path: root/pagehandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'pagehandler.py')
-rwxr-xr-xpagehandler.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pagehandler.py b/pagehandler.py
index 0528291..7452880 100755
--- a/pagehandler.py
+++ b/pagehandler.py
@@ -35,6 +35,10 @@ class CmdHandler:
elif patchtype == "nondebian":
self.patchname = "direct (non packaging) changes"
self.content = dh.nondebiandir()
+ elif patchtype == "misc":
+ patchfile = args[5]
+ self.patchname = "direct changes for "+patchfile
+ self.content = dh.filterdiff(include=patchfile)
else:
self.error("unhandled patch type '%s'"%(patchtype))
self.pkgname = pkgname