hgext3rd/topic/destination.py
changeset 2006 c817efec4afc
parent 2005 093af1c7d58d
child 2017 dd1055f38397
--- a/hgext3rd/topic/destination.py	Tue Aug 30 15:15:05 2016 -0700
+++ b/hgext3rd/topic/destination.py	Tue Aug 30 15:18:43 2016 -0700
@@ -15,11 +15,11 @@
                      onheadcheck=True, destspace=None):
     # XXX: take destspace into account
     if sourceset is None:
-       p1 = repo['.']
+        p1 = repo['.']
     else:
         # XXX: using only the max here is flacky. That code should eventually
         # be updated to take care of the whole sourceset.
-       p1 = repo[max(sourceset)]
+        p1 = repo[max(sourceset)]
     top = p1.topic()
     if top:
         revs = repo.revs('topic(%s) - obsolete()', top)