fix a missing leading space so that any args are not attached to the emerge command...
authorbrian.dolbec <brian.dolbec@5234894e-44cd-11de-9a4c-a76526a193c6>
Fri, 5 Nov 2010 05:26:11 +0000 (05:26 +0000)
committerPaul Varner <fuzzyray@gentoo.org>
Tue, 12 Jul 2011 21:29:00 +0000 (16:29 -0500)
git-svn-id: http://genscripts.googlecode.com/svn/trunk/gentoolkit@477 5234894e-44cd-11de-9a4c-a76526a193c6

pym/gentoolkit/revdep_rebuild/revdep-rebuild.py

index 23298f9dfd95320205886bbccf1a87faa76626c6..544a86c5a7092bafe1ce0b2d586b953a52acd89e 100755 (executable)
@@ -667,7 +667,7 @@ if __name__ == "__main__":
             elif key in ('-i', '--ignore'):
                 USE_TMP_FILES = False
 
-        args = " ".join(args)
+        args = " " + " ".join(args)
     except getopt.GetoptError:
         print_v(1, red('Unrecognized option\n'))
         print_usage()