api docs: Fix confusing discussion of "dev server".

The Zulip API is to be used on both development and production
servers, and really we just need to talk about zuliprc files.

There's a similar issue for the JS docs, but we need to fix the
copy/paste issues with those as well.
This commit is contained in:
Tim Abbott
2018-10-16 12:23:23 -07:00
parent 3d2b3f8fa4
commit 8481a2fd2d

View File

@@ -20,8 +20,8 @@ PYTHON_CLIENT_CONFIG = """
import zulip
# Download ~/zuliprc-dev from your dev server
client = zulip.Client(config_file="~/zuliprc-dev")
# Pass the path to your zuliprc file here.
client = zulip.Client(config_file="~/zuliprc")
"""
@@ -30,7 +30,7 @@ PYTHON_CLIENT_ADMIN_CONFIG = """
import zulip
# You need a zuliprc-admin with administrator credentials
# The user for this zuliprc file must be an organization administrator
client = zulip.Client(config_file="~/zuliprc-admin")
"""