Make cvs_port a string and an empty one as well. This should fix the concatination...
authorHolger Hans Peter Freyther <zecke@selfish.org>
Sat, 6 Jan 2007 19:48:12 +0000 (19:48 +0000)
committerHolger Hans Peter Freyther <zecke@selfish.org>
Sat, 6 Jan 2007 19:48:12 +0000 (19:48 +0000)
lib/bb/fetch/cvs.py

index ed92b73..bd33171 100644 (file)
@@ -82,7 +82,7 @@ class Cvs(Fetch):
         if "localdir" in ud.parm:
             localdir = ud.parm["localdir"]
 
-        cvs_port = 2401
+        cvs_port = ""
         if "port" in ud.parm:
             cvs_port = ud.parm["port"]