move result url up
This commit is contained in:
parent
9e66bb6c62
commit
bec480c7cf
1 changed files with 4 additions and 2 deletions
|
@ -766,9 +766,11 @@ class API(ox.API):
|
||||||
if os.path.exists(self._resume_file):
|
if os.path.exists(self._resume_file):
|
||||||
os.unlink(self._resume_file)
|
os.unlink(self._resume_file)
|
||||||
resume = None
|
resume = None
|
||||||
print ' ' * 80
|
|
||||||
if result_url:
|
if result_url:
|
||||||
print result_url
|
print result_url + (' ' * (80-len(result_url)))
|
||||||
|
else:
|
||||||
|
print ' ' * 80
|
||||||
|
print ''
|
||||||
return data and 'result' in data and data.get('result') == 1
|
return data and 'result' in data and data.get('result') == 1
|
||||||
else:
|
else:
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
|
|
Loading…
Reference in a new issue