diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-25 04:41:07 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-25 04:41:07 +0000 |
commit | 6b187961bffff298ef37007bd81b7a0c71ed8284 (patch) | |
tree | 5b7d63a30ad14cfffb84dbeca932b345da11523d | |
parent | 934ef15d2e0e1397ea0d4361991b1c90dcfc428d (diff) | |
download | portage-6b187961bffff298ef37007bd81b7a0c71ed8284.tar.gz portage-6b187961bffff298ef37007bd81b7a0c71ed8284.tar.bz2 portage-6b187961bffff298ef37007bd81b7a0c71ed8284.zip |
Fix typo in writeints()v2.1_pre2
svn path=/main/trunk/; revision=2450
-rw-r--r-- | pym/portage_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage_util.py b/pym/portage_util.py index e7779e0c4..d11cede5c 100644 --- a/pym/portage_util.py +++ b/pym/portage_util.py @@ -196,7 +196,7 @@ def grablines(myfilename,recursive=0): def writeints(mydict,myfilename): myfile = None - myf2 = "%s.%i" % (myf2, os.getpid()) + myf2 = "%s.%i" % (myfilename, os.getpid()) try: myfile=open(myf2,"w") for x in mydict: |