summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/DependencyArg.py
blob: 3bcaabefee6d650f7cf389c1dc6dae43dfdfdac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

class DependencyArg(object):
	def __init__(self, arg=None, root_config=None):
		self.arg = arg
		self.root_config = root_config

	def __str__(self):
		return str(self.arg)