summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Finney <seanius@debian.org>2008-06-24 22:25:36 +0200
committerSean Finney <seanius@debian.org>2008-06-24 22:25:36 +0200
commit07a8802d4b8c3a7b40940887c04a8f994a56ebac (patch)
treeaab5d1810866f17173c2617e5ef0f715ee5e8539
parent5341f91b2ff4e95f4e53aef39bfd53ec38f32435 (diff)
downloadpatch-tracker-07a8802d4b8c3a7b40940887c04a8f994a56ebac.tar.gz
fix for direct patches in subdirs
-rwxr-xr-xpagehandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pagehandler.py b/pagehandler.py
index 06034a2..bbfa428 100755
--- a/pagehandler.py
+++ b/pagehandler.py
@@ -36,7 +36,7 @@ class CmdHandler:
self.patchname = "direct (non packaging) changes"
self.content = dh.nondebiandir()
elif patchtype == "misc":
- patchfile = args[5]
+ patchfile = os.sep.join(args[5:])
self.patchname = "direct changes for "+patchfile
self.content = dh.filterdiff(include=patchfile)
else: