diff options
Diffstat (limited to '')
-rwxr-xr-x | vgstash | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -399,6 +399,8 @@ def main(): # Let'er rip! args = parser.parse_args() args.func(args) + # Oddity in Python needed if you're going to play nice with piping + sys.stderr.close() # Our usual incantation if __name__ == "__main__": |