Browse Source

self.args is used for other stuff in an exception

tags/nilmtools-1.0
Jim Paris 11 years ago
parent
commit
87178e9599
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/filter.py

+ 1
- 1
src/filter.py View File

@@ -21,7 +21,7 @@ import cStringIO

class MissingDestination(Exception):
def __init__(self, args, src, dest):
self.args = args
self.parsed_args = args
self.src = src
self.dest = dest
Exception.__init__(self, "destination path " + dest.path + " not found")


Loading…
Cancel
Save