| Index: cli/job.py
 | 
| diff --git a/cli/job.py b/cli/job.py
 | 
| index 5eb00a523cec2d2f14b6044c9e3e577db86b228a..a5122be947932334f5b7baf4aea8f2f7d7a55df2 100644
 | 
| --- a/cli/job.py
 | 
| +++ b/cli/job.py
 | 
| @@ -602,12 +602,6 @@ class job_clone(job_create_or_clone):
 | 
|          for field in ('name', 'created_on', 'id', 'owner'):
 | 
|              del clone_info['job'][field]
 | 
|  
 | 
| -        # Also remove parameterized_job field, as the feature still is
 | 
| -        # incomplete, this tool does not attempt to support it for now,
 | 
| -        # it uses a different API function and it breaks create_job()
 | 
| -        if clone_info['job'].has_key('parameterized_job'):
 | 
| -            del clone_info['job']['parameterized_job']
 | 
| -
 | 
|          # Keyword args cannot be unicode strings
 | 
|          self.data.update((str(key), val)
 | 
|                           for key, val in clone_info['job'].iteritems())
 | 
| 
 |