summaryrefslogtreecommitdiff
path: root/morphlib/git.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-25 14:56:29 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-25 14:56:29 +0100
commitf96652f32428250dadff60fec809fe7ed8473640 (patch)
tree78d929d68fa97e6b84688edc8989c1975f6b9a2f /morphlib/git.py
parent750b4e3869ff9f7aa5020c73b16d407107fc6b59 (diff)
downloadmorph-f96652f32428250dadff60fec809fe7ed8473640.tar.gz
Remove optional msg argument from Submodule class
Nobody was using this, so it is obviously useless. Instead, log at the warning level.
Diffstat (limited to 'morphlib/git.py')
-rw-r--r--morphlib/git.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index 5a3f8503..81e7213b 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -60,11 +60,10 @@ class MissingSubmoduleCommitError(cliapp.AppException):
class Submodules(object):
- def __init__(self, app, repo, ref, msg=logging.debug):
+ def __init__(self, app, repo, ref):
self.app = app
self.repo = repo
self.ref = ref
- self.msg = msg
self.submodules = []
def load(self):
@@ -120,7 +119,7 @@ class Submodules(object):
# add a submodule object to the list
self.submodules.append(submodule)
else:
- self.msg('Skipping submodule "%s" as %s:%s has '
+ logging.warning('Skipping submodule "%s" as %s:%s has '
'a non-commit object for it' %
(submodule.name, self.repo, self.ref))
except cliapp.AppException: