Fixed a couple of typos, and some config things I missed in the object-replicator
This commit is contained in:
3 changed files with 5 additions and 5 deletions
@@ -32,8 +32,8 @@ if __name__ == '__main__':
print "Usage: object-replicator CONFIG_FILE [once]"
sys.exit()
c = ConfigParser()
if not c.read(conf_file):
print "Unable to read config file: %s" % conf_file
if not c.read(sys.argv[1]):
print "Unable to read config file"
sys.exit(1)
if c.has_section('object-replicator'):
conf = dict(c.items('object-replicator'))
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.