From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8BA4C138247 for ; Sat, 28 Dec 2013 13:15:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D6C4E0A98; Sat, 28 Dec 2013 13:15:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9BE40E0A98 for ; Sat, 28 Dec 2013 13:15:46 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C298833F64F for ; Sat, 28 Dec 2013 13:15:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 38D3EE5537 for ; Sat, 28 Dec 2013 13:15:43 +0000 (UTC) From: "Ralph Sennhauser" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ralph Sennhauser" Message-ID: <1388233680.290395c552c68adfbbf5b0f3870e166bfc5f19c4.sera@gentoo> Subject: [gentoo-commits] proj/java-config:master commit in: src/java_config_2/ X-VCS-Repository: proj/java-config X-VCS-Files: src/java_config_2/EnvironmentManager.py X-VCS-Directories: src/java_config_2/ X-VCS-Committer: sera X-VCS-Committer-Name: Ralph Sennhauser X-VCS-Revision: 290395c552c68adfbbf5b0f3870e166bfc5f19c4 X-VCS-Branch: master Date: Sat, 28 Dec 2013 13:15:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b3f95b56-285d-4e7d-87f6-292e4984e337 X-Archives-Hash: 331a03b765f34daeb2a60fb6be0365be commit: 290395c552c68adfbbf5b0f3870e166bfc5f19c4 Author: Ralph Sennhauser gentoo org> AuthorDate: Sat Dec 28 10:44:06 2013 +0000 Commit: Ralph Sennhauser gentoo org> CommitDate: Sat Dec 28 12:28:00 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/java-config.git;a=commit;h=290395c5 Should be instance variables --- src/java_config_2/EnvironmentManager.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/java_config_2/EnvironmentManager.py b/src/java_config_2/EnvironmentManager.py index afb80df..ab83dd1 100644 --- a/src/java_config_2/EnvironmentManager.py +++ b/src/java_config_2/EnvironmentManager.py @@ -17,16 +17,14 @@ import os, re, sys class EnvironmentManager(object): """This is the central class, which manages all information from the 'environment'""" - virtual_machines = None - virtuals = None - virtuals_pref = None - active = None - def __init__(self, root='', eprefix=''): self.all_packages_loaded = False self.packages = {} self.virtuals = {} + self.virtuals_pref = None + self.virtual_machines = None + self.active = None self.eprefix = eprefix self.eroot = root + eprefix