# HG changeset patch # User Bryan O'Sullivan # Date 1186256310 25200 # Node ID 568bb3b4b815fff6a935552ba1db87f616692952 # Parent 12930b97a729dfc333bbe44e99d66899b13fc793 convert: drop duplicated assignments. diff --git a/hgext/convert/common.py b/hgext/convert/common.py --- a/hgext/convert/common.py +++ b/hgext/convert/common.py @@ -5,8 +5,6 @@ class NoRepo(Exception): pass class commit(object): def __init__(self, author, date, desc, parents, branch=None, rev=None, copies={}): - self.rev = None - self.branch = None self.author = author self.date = date self.desc = desc