expand_json utility... yet another convenience function :)
[mediagoblin.git] / mediagoblin / gmg_commands / util.py
index 3e26c53fd1ac3b3de88a55b7a151db958b5c2371..63e39ca9523ef48b63aad0048c2d93be48ecc2f8 100644 (file)
@@ -1,5 +1,5 @@
 # GNU MediaGoblin -- federated, autonomous media hosting
-# Copyright (C) 2011 MediaGoblin contributors.  See AUTHORS.
+# Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as published by
@@ -36,5 +36,5 @@ def prompt_if_not_set(variable, text, password=False):
             variable=raw_input(text + u' ')
         else:
             variable=getpass.getpass(text + u' ')
-    
+
     return variable