minor changes to coding style
This commit is contained in:
parent
8f2ef1d3e0
commit
56e5ee96f5
|
@ -3,4 +3,5 @@ dist
|
||||||
*.pyc
|
*.pyc
|
||||||
.*
|
.*
|
||||||
refine_client.egg-info
|
refine_client.egg-info
|
||||||
|
refine.spec
|
||||||
README.html
|
README.html
|
||||||
|
|
|
@ -466,7 +466,7 @@ def create_project(options, file_fullpath):
|
||||||
|
|
||||||
if 'project' in url_params:
|
if 'project' in url_params:
|
||||||
project_id = url_params['project'][0]
|
project_id = url_params['project'][0]
|
||||||
print 'New project: ' + project_id
|
print('New project: ' + project_id)
|
||||||
else:
|
else:
|
||||||
raise Exception('Project not created')
|
raise Exception('Project not created')
|
||||||
|
|
||||||
|
@ -480,7 +480,7 @@ def create_project(options, file_fullpath):
|
||||||
if 'processes' in url_params and len(url_params['processes']) > 0:
|
if 'processes' in url_params and len(url_params['processes']) > 0:
|
||||||
time.sleep(polling_delay)
|
time.sleep(polling_delay)
|
||||||
else:
|
else:
|
||||||
print 'done'
|
print('done')
|
||||||
return
|
return
|
||||||
|
|
||||||
# check number of rows
|
# check number of rows
|
||||||
|
@ -491,7 +491,7 @@ def create_project(options, file_fullpath):
|
||||||
response_body = response.read()
|
response_body = response.read()
|
||||||
response_json = json.loads(response_body)
|
response_json = json.loads(response_body)
|
||||||
if 'total' in response_body and response_json['total'] > 0:
|
if 'total' in response_body and response_json['total'] > 0:
|
||||||
print 'Number of rows:', response_json['total']
|
print('Number of rows:', response_json['total'])
|
||||||
else:
|
else:
|
||||||
raise Exception('Project contains 0 rows. Please check --help for mandatory arguments for xml, json, xls and ods')
|
raise Exception('Project contains 0 rows. Please check --help for mandatory arguments for xml, json, xls and ods')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue