Skip to content

Commit

Permalink
Fix Bug - 1227325 - Client warns about URL in zanata.xml auto-generat…
Browse files Browse the repository at this point in the history
…ed 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.
  • Loading branch information
anish committed Jul 5, 2015
1 parent 2403830 commit 100899b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zanataclient/zanata.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def process_url(project_config, command_options):
url = url.strip()

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

return url
Expand Down

0 comments on commit 100899b

Please sign in to comment.