Bug #210690 - Fix --help output to show the leading slash on the path to
authorZac Medico <zmedico@gentoo.org>
Fri, 28 Mar 2008 12:30:55 +0000 (12:30 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 28 Mar 2008 12:30:55 +0000 (12:30 -0000)
the world file. (trunk r9486)

svn path=/main/branches/2.1.2/; revision=9564

bin/regenworld

index 6016534064c662840d4aad2476abba19a8408551..52dbbe19c5c35109f707d01b08098350535cb880 100755 (executable)
@@ -40,12 +40,14 @@ def isunwanted(pkgline):
                __uniqlist__.append(pkgline)
                return True
 
+world_file = os.path.join("/", portage.WORLD_FILE)
+
 # show a little description if we have arguments
 if len(sys.argv) >= 2 and sys.argv[1] in ["-h", "--help"]:
        print "This script regenerates the portage world file by checking the portage"
        print "logfile for all actions that you've done in the past. It ignores any"
        print "arguments except --help. It is recommended that you make a backup of"
-       print "your existing world file (%s) before using this tool." % portage.WORLD_FILE
+       print "your existing world file (%s) before using this tool." % world_file
        sys.exit(0)
 
 worldlist = portage.grabfile(os.path.join("/", portage.WORLD_FILE))