zulip_bots run.py: Fix misnamed function.

This commit is contained in:
derAnfaenger 2017-09-06 13:38:14 +02:00
parent b585bd2dfa
commit bbf444c2bc

View file

@ -30,7 +30,7 @@ def import_module_from_source(path, name=None):
return module return module
def name_and_patch_match(given_name, path_to_bot): def name_and_path_match(given_name, path_to_bot):
if given_name and path_to_bot: if given_name and path_to_bot:
name_by_path = os.path.splitext(os.path.basename(path_to_bot))[0] name_by_path = os.path.splitext(os.path.basename(path_to_bot))[0]
if (given_name != name_by_path): if (given_name != name_by_path):