/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

  • Committer: Neil Santos
  • Date: 2010-03-05 05:30:19 UTC
  • mto: (5080.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5081.
  • Revision ID: neil_santos@users.sourceforge.net-20100305053019-shzuqnhliw67q1nm
Renamed link() methods to hardlink(), as per mbp's suggestion

Show diffs side-by-side

added added

removed removed

Lines of Context:
521
521
            return osutils.readlink(self._abspath(relpath))
522
522
 
523
523
    if osutils.hardlinks_good():
524
 
        def link(self, source, link_name):
 
524
        def hardlink(self, source, link_name):
525
525
            """See Transport.link."""
526
526
            try:
527
527
                os.link(self._abspath(source), self._abspath(link_name))