diff options
author | Sean Finney <seanius@debian.org> | 2008-06-24 22:25:36 +0200 |
---|---|---|
committer | Sean Finney <seanius@debian.org> | 2008-06-24 22:25:36 +0200 |
commit | 07a8802d4b8c3a7b40940887c04a8f994a56ebac (patch) | |
tree | aab5d1810866f17173c2617e5ef0f715ee5e8539 | |
parent | 5341f91b2ff4e95f4e53aef39bfd53ec38f32435 (diff) | |
download | patch-tracker-07a8802d4b8c3a7b40940887c04a8f994a56ebac.tar.gz |
fix for direct patches in subdirs
-rwxr-xr-x | pagehandler.py | 2 |
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: |