diff mbox

[Branch,~linaro-validation/lava-dashboard-tool/trunk] Rev 151: Fix the default value for make-command --name=

Message ID 20110629095312.31507.5751.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Zygmunt Krynicki June 29, 2011, 9:53 a.m. UTC
Merge authors:
  Dave Pigott (dpigott)
Related merge proposals:
  https://code.launchpad.net/~dpigott/lava-dashboard-tool/Bug771182-None-fix/+merge/66269
  proposed by: Zygmunt Krynicki (zkrynicki)
  review: Approve - Zygmunt Krynicki (zkrynicki)
------------------------------------------------------------
revno: 151 [merge]
fixes bug(s): https://launchpad.net/bugs/771182
committer: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
branch nick: trunk
timestamp: Wed 2011-06-29 10:50:26 +0100
message:
  Fix the default value for make-command --name=
  
  The default value cannot be None as the server requires a string. Let's just
  use an empty string instead.
modified:
  lava_dashboard_tool/commands.py


--
lp:lava-dashboard-tool
https://code.launchpad.net/~linaro-validation/lava-dashboard-tool/trunk

You are subscribed to branch lp:lava-dashboard-tool.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard-tool/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dashboard_tool/commands.py'
--- lava_dashboard_tool/commands.py	2011-06-27 16:04:39 +0000
+++ lava_dashboard_tool/commands.py	2011-06-29 09:50:26 +0000
@@ -626,7 +626,7 @@ 
         parser.add_argument(
             "--name",
             type=str,
-            default=None,
+            default="",
             help="Name of the bundle stream (description)")
 
     def invoke_remote(self):