diff options
Diffstat (limited to 'mediagoblin/gmg_commands/addmedia.py')
-rw-r--r-- | mediagoblin/gmg_commands/addmedia.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mediagoblin/gmg_commands/addmedia.py b/mediagoblin/gmg_commands/addmedia.py index fbec7071..f8bd1715 100644 --- a/mediagoblin/gmg_commands/addmedia.py +++ b/mediagoblin/gmg_commands/addmedia.py @@ -17,8 +17,6 @@ import os -import six - from mediagoblin.db.models import LocalUser from mediagoblin.gmg_commands import util as commands_util from mediagoblin.submit.lib import ( @@ -93,8 +91,6 @@ def addmedia(args): # this is kinda terrible if some_string is None: return None - if six.PY2: - return str(some_string, 'utf-8') return some_string try: |