]> arthur.barton.de Git - bup.git/commitdiff
Change userfullname() default back to "user%d" for the moment.
authorRob Browning <rlb@defaultvalue.org>
Mon, 24 Sep 2012 00:08:38 +0000 (19:08 -0500)
committerRob Browning <rlb@defaultvalue.org>
Mon, 24 Sep 2012 00:09:19 +0000 (19:09 -0500)
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 <rlb@defaultvalue.org>
lib/bup/helpers.py

index 3e6f6d2c149dde67e138e5c828523307188594ef..880c19a92e15c58455b8c7fbd61a8f86c363d5cf 100644 (file)
@@ -237,7 +237,7 @@ def userfullname():
             pass
         finally:
             if not _userfullname:
-              _userfullname = 'user %d' % uid
+              _userfullname = 'user%d' % uid
     return _userfullname