From: Rob Browning Date: Mon, 24 Sep 2012 00:08:38 +0000 (-0500) Subject: Change userfullname() default back to "user%d" for the moment. X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4875d0cb42eb66c3ac7f0297e0cb7aca6d4f3975;p=packages%2Fb%2Fbup.git Change userfullname() default back to "user%d" for the moment. This was changed in the previous GECOS patch, but since username() has the "user%d" fallback too, I think we should change both, or neither, and should probably discuss it a bit more first. Signed-off-by: Rob Browning --- diff --git a/lib/bup/helpers.py b/lib/bup/helpers.py index 3e6f6d2..880c19a 100644 --- a/lib/bup/helpers.py +++ b/lib/bup/helpers.py @@ -237,7 +237,7 @@ def userfullname(): pass finally: if not _userfullname: - _userfullname = 'user %d' % uid + _userfullname = 'user%d' % uid return _userfullname