Browse code

Backslash continuations (DevStack)

Fixes bug #943087

Backslash continuations removal for DevStack

Change-Id: I3e3e6d35b939ce8d0e3bc2b529c9d172286ba2c0

Zhongyue Luo authored on 2012/02/11 01:56:18
Showing 2 changed files
... ...
@@ -23,3 +23,4 @@ Todd Willey <xtoddx@gmail.com>
23 23
 Tres Henry <tres@treshenry.net>
24 24
 Vishvananda Ishaya <vishvananda@gmail.com>
25 25
 Yun Mao <yunmao@gmail.com>
26
+Zhongyue Luo <lzyeval@gmail.com>
... ...
@@ -5,8 +5,8 @@ import sys
5 5
 
6 6
 
7 7
 def print_usage():
8
-    print "Usage: %s [jenkins_url (eg. http://50.56.12.202:8080/)]"\
9
-          % sys.argv[0]
8
+    print ("Usage: %s [jenkins_url (eg. http://50.56.12.202:8080/)]"
9
+           % sys.argv[0])
10 10
     sys.exit()
11 11
 
12 12