This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright (c) 2010 Grzegorz Sobański | |
# | |
# Git post receive script developed for mlabs | |
# - adds the commits to trac | |
# based on post-receive-email from git-contrib | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import copy | |
class Field(object): | |
def __init__(self, value=None): | |
self.name = None | |
self.value = value | |
def set_field_name(self, name): | |
""" |
NewerOlder