diff --git a/gitlab/update_feedstock.py b/gitlab/update_feedstock.py
index c824c8a41f8d27e5688b4e274500fc152171aaa7..460fd47e4745ecbbdf43dd63726d1bcd7bae0a5c 100755
--- a/gitlab/update_feedstock.py
+++ b/gitlab/update_feedstock.py
@@ -207,8 +207,8 @@ def main(package, direct_push=False):
       run_commands(['git', 'push', '--force', '--set-upstream',
                     'origin', branch_name])
       gitlab = Gitlab(os.environ.get('GITLAB_API_TOKEN'))
-      project_id = gitlab.get_project(package)['id']
-      title = 'Update to version {}'.format(branch_name)
+      project_id = gitlab.get_project('bob.conda')['id']
+      title = 'Update-to-version-{}'.format(branch_name)
       gitlab.create_merge_request(project_id, branch_name, 'master', title,
                                   remove_source_branch='true')
   finally: