just print

This commit is contained in:
j 2016-09-19 15:39:07 +02:00
parent 0a36713487
commit 6824e11d08

View file

@ -437,7 +437,7 @@ class Client(object):
profile = self.profile(info)
cmd = encode_cmd(p, self.media_cache(), profile, info)
cmd = [' ' in c and u'"%s"' % c or c for c in cmd]
print(u' '.join(cmd)).encode('utf-8')
print(u' '.join(cmd))
def save_config(self):
if not self._configfile: