diff options
-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: |