Skip to content

Commit 100899b

Browse files
author
anish
committed
Fix Bug - 1227325 - Client warns about URL in zanata.xml auto-generated by zanata when starting project
z-p-c client, strips '/' if it has at the end of URL automatically,however it warns user about. I think its unecessary and causes confusion. So commenting warning statement.
1 parent 2403830 commit 100899b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zanataclient/zanata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def process_url(project_config, command_options):
373373
url = url.strip()
374374

375375
if url[-1] == "/":
376-
log.info("Warning, the url %s, contains / at end,please check your URL in zanata.xml" % url)
376+
#log.info("Warning, the url %s, contains / at end,please check your URL in zanata.xml" % url)
377377
url = url[:-1]
378378

379379
return url

0 commit comments

Comments
 (0)