From 3ed041bf34e7b0362bab7a586090bccedefa860f Mon Sep 17 00:00:00 2001 From: Qixiang Wan Date: Apr 12 2017 02:32:54 +0000 Subject: [PATCH 1/2] Make 'start_from_here' script work in virtualenv --- diff --git a/start_from_here b/start_from_here index 086a675..0018c66 100755 --- a/start_from_here +++ b/start_from_here @@ -1,4 +1,4 @@ -#!/bin/python +#!/usr/bin/env python __requires__ = 'fedmsg' import sys, os from pkg_resources import load_entry_point From 13f14efe8b4b7baa9db54347b191dd7376d5f2bd Mon Sep 17 00:00:00 2001 From: Qixiang Wan Date: Apr 12 2017 02:33:14 +0000 Subject: [PATCH 2/2] Fix wrong app name in docstring --- diff --git a/freshmaker/config.py b/freshmaker/config.py index 9c207ef..25e47f8 100644 --- a/freshmaker/config.py +++ b/freshmaker/config.py @@ -85,7 +85,7 @@ def init_config(): class Config(object): - """Class representing the orchestrator configuration.""" + """Class representing the freshmaker configuration.""" _defaults = { 'debug': { 'type': bool,