Skip to content
Snippets Groups Projects
  1. Oct 11, 2021
  2. Oct 07, 2021
  3. Sep 21, 2021
  4. Aug 25, 2021
  5. Aug 24, 2021
  6. Aug 18, 2021
  7. Aug 16, 2021
  8. Aug 02, 2021
  9. Jul 28, 2021
  10. Jul 26, 2021
  11. Apr 01, 2021
  12. Feb 25, 2021
  13. Feb 24, 2021
  14. Jan 21, 2021
  15. Jan 05, 2021
  16. Oct 23, 2020
  17. Jul 09, 2020
  18. Apr 24, 2020
  19. Nov 29, 2018
    • Alan De Smet's avatar
      Positional args can again intermix with options · 8d4bce43
      Alan De Smet authored
      The move from optparse to argparse caused a regression: positional
      arguments could no longer intermix with optional arguments.  This fixes
      that. (As of Python 3.7, parse_intermixed_args solves the problem,
      but we want to support 2.6, maybe 2.5.)
      8d4bce43
  20. Nov 28, 2018
  21. Oct 03, 2018
  22. Sep 21, 2018
  23. Mar 20, 2018
  24. Jul 21, 2017
  25. Jul 17, 2017
  26. Apr 20, 2017
  27. Apr 03, 2017
  28. Mar 16, 2017
  29. Dec 20, 2016
  30. Aug 10, 2016
    • Alan De Smet's avatar
      add --parsable, formatting info output for parsing · fe19e296
      Alan De Smet authored
      "glance info --parsable" now outputs the results in tab deliminated format, repeating the filename on each line, making it easier to parse programmatically. Additional fields may be added later!
      
      At the moment only supports "info".  May add support for other formats later.
      fe19e296
  31. Jul 27, 2016
    • Alan De Smet's avatar
      Cleanup sorting code · eb6f1257
      Alan De Smet authored
      Put sort directly into for loop; don't bother with giving it a variable.
      Use named argument instead of relying on positional one.
      eb6f1257
    • Alan De Smet's avatar
      if glance info can't read files, return non-zero · 4758bcca
      Alan De Smet authored
      Returns how many files could not be read, to a maximum of 255 (since the exit code is 8 bit).
      This allows other processes calling "glance info" to detect errors.
      4758bcca
  32. Jul 14, 2016
    • Alan De Smet's avatar
      Sort variables in output from stats & inspectStats. · 6ec2323e
      Alan De Smet authored
      Previously output was ordered in whatever order the set happened to offer them in. This was not stable between different Python versions.  Ordered alphabetically(ish) should be more human friendly, and will simplify the tests.
      6ec2323e
Loading