diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-12 04:36:13 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-12-12 04:36:13 +0100 |
commit | c9633a2d2b3d29917c4dbbfaa6f10da20fc8ce77 (patch) | |
tree | 66f2c756e6cd6d260d7491fb3ee659be4b397af3 /processors | |
parent | 348a753d87ca73eb92b7128f2776f9bff697606a (diff) | |
download | bzr-fastimport-c9633a2d2b3d29917c4dbbfaa6f10da20fc8ce77.tar.gz |
Fix typo.
Diffstat (limited to 'processors')
-rw-r--r-- | processors/generic_processor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/processors/generic_processor.py b/processors/generic_processor.py index 70779b3..093a432 100644 --- a/processors/generic_processor.py +++ b/processors/generic_processor.py @@ -606,7 +606,7 @@ class GenericProcessor(processor.ImportProcessor): if feature not in commands.FEATURE_NAMES: raise plugin_errors.UnknownFeature(feature) - def debug(self, mgs, *args): + def debug(self, msg, *args): """Output a debug message if the appropriate -D option was given.""" if "fast-import" in debug.debug_flags: msg = "%s DEBUG: %s" % (self._time_of_day(), msg) |