Code review comment for lp:~nuclearbob/utah/installclient-improvement

Revision history for this message
Javier Collado (javier.collado) wrote :

One more thing I'd like to comment is that to concatenate two strings you don't really need any operator (they are still needed to concatenate the output from a function like os.path.join though), just put them together:
>>> 'Hello' ' ' 'World'
'Hello World'
>>>

In my opinion, when there are less plus signs, the code is more readable.

« Back to merge proposal