~bzr/ubuntu/lucid/hitchhiker/packaging

« back to all changes in this revision

Viewing changes to hitchhiker

  • Committer: Aaron Bentley
  • Date: 2009-07-09 01:10:33 UTC
  • Revision ID: aaron@aaronbentley.com-20090709011033-5waiypo47eweu9gf
Fix lsl with specified path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
        """
202
202
        try:
203
203
            for name in sorted(self.transport.list_dir(relpath)):
204
 
                self.print_listing(name)
 
204
                path = osutils.pathjoin(relpath, name)
 
205
                self.print_listing(path)
205
206
        except bzr_errors.NoSuchFile, e:
206
207
            raise UserError(e)
207
208
        except bzr_errors.TransportNotPossible: