summaryrefslogtreecommitdiff
path: root/morphlib/source.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/source.py')
-rw-r--r--morphlib/source.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/morphlib/source.py b/morphlib/source.py
index 2dbabad1..d0f69a28 100644
--- a/morphlib/source.py
+++ b/morphlib/source.py
@@ -56,3 +56,6 @@ class Source(object):
return '%s|%s|%s' % (self.repo_name,
self.original_ref,
self.filename)
+
+ def __repr__(self): # pragma: no cover
+ return 'Source(%s)' % str(self)