Update print statements to use the new function syntax.

Review Request #4903 — Created Nov. 5, 2013 and submitted

Information

Djblets
master

Reviewers

Update print statements to use the new function syntax.

In python 3, print is a function rather than a statement. This is
helpfully included in python 2.6+ with a __future__ import.

Several of our print statements existed inside management commands. The
proper way to output inside of a command is with self.stdout.write (or
self.stderr.write), so I've updated all of those.

Ran unit tests

chipx86
  1. Bless still exists? I thought we nuked that?

    1. I guess we never killed this part. I'll do that in another change.
  2. 
      
david
Review request changed

Status: Closed (submitted)

Change Summary:

Pushed to master (3dbbf15)
Loading...