- Timestamp:
- Feb 17, 2017, 2:22:57 PM (4 years ago)
- Location:
- lliurex-store/trunk/fuentes/lliurex-store-cli/usr/share/lliurex-store
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/lliurex-store-cli/usr/share/lliurex-store/lliurex-store-cli.py
r3656 r3661 46 46 pkgName=dependency.split(';')[0] 47 47 pkgString.append(pkgName) 48 print(u'Depends: '+' '+', '.join(pkgString))48 print(u'Depends: '+' '+', '.join(pkgString)) 49 49 print("") 50 50 except Exception as e: … … 74 74 print(data) 75 75 else: 76 print (u"Error: "+str(status['status'])) 76 msg=u"Package" 77 failed=parms[action] 78 if (action=='install' or action=='remove'): 79 msg=u"Unable to"+' '+action 80 if action=='list': 81 msg=u"Section" 82 failed=', '.join(failed) 83 84 print (color.RED+u"Error"+": "+color.END+msg+' '+failed+' '+status['msg']) 77 85 printed=True 78 86 return(printed)
Note: See TracChangeset
for help on using the changeset viewer.