[jhbuild] sysdeps: fix indentation of a line in the output



commit 49f702c0085b9deedf5ac0829adcb30cdfc79288
Author: Ryan Lortie <desrt desrt ca>
Date:   Sun Dec 14 19:12:45 2014 -0500

    sysdeps: fix indentation of a line in the output
    
    The output looked like the following:
    
      Optional packages: (JHBuild will build the missing packages):
        System installed packages which are too old:
          (none)
        No matching system package installed:
        (none)
    
    vs. all of the other cases of '(none)' which were indented one further.
    
    Fix this one so that it looks like:
    
      Optional packages: (JHBuild will build the missing packages):
        System installed packages which are too old:
          (none)
        No matching system package installed:
          (none)
    
    like the others.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=741537

 jhbuild/commands/sysdeps.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/jhbuild/commands/sysdeps.py b/jhbuild/commands/sysdeps.py
index 091e3c8..ccc3ba0 100644
--- a/jhbuild/commands/sysdeps.py
+++ b/jhbuild/commands/sysdeps.py
@@ -145,7 +145,7 @@ class cmd_sysdeps(cmd_build):
                                                        module.pkg_config[:-3]))
 
             if len(uninstalled_pkgconfigs) == 0:
-                print _('  (none)')
+                print _('    (none)')
 
         if options.install:
             installer = SystemInstall.find_best()


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]