ladish_control: improve output of "studios" command

This commit is contained in:
Nedko Arnaudov 2009-08-24 03:16:05 +03:00
parent 186b8ac84e
commit 1b6f9b85f9
1 changed files with 3 additions and 1 deletions

View File

@ -122,7 +122,9 @@ def main():
elif arg == 'studios':
print "--- studio list"
for studio in control_iface.GetStudioList():
print studio
name = studio[0]
mtime = studio[1]['Modification Time']
print '"%s" last modified on %s' % (name, time.ctime(mtime))
elif arg == 'apps':
print "--- app list"
for app in control_iface.GetApplicationList():