~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

revert out the revision spec from revision spec change

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
            return object.__new__(RevisionSpec, spec)
112
112
 
113
113
        if isinstance(spec, RevisionSpec):
114
 
            return object.__new__(type(spec), spec)
 
114
            import pdb;pdb.set_trace()
115
115
 
116
116
        try:
117
117
            spec = int(spec)