-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
Description
DebianPackager.py
try: if tweak_data['maintainer']['email']: control_file += "Maintainer: " + tweak_data['maintainer']['name'] + " <" \ + tweak_data['maintainer']['email'] + ">\n" except Exception: try: control_file += "Maintainer: " + tweak_data['maintainer']['name'] + "\n" except Exception: try: if tweak_data['developer']['email']: control_file += "Maintainer: " + tweak_data['developer']['name'] + " <" \ + tweak_data['developer']['email'] + ">\n" except Exception: try: control_file += "Maintainer: " + tweak_data['developer']['name'] + "\n" except Exception: control_file += "Maintainer: Unknown\n"
there is a problem with the judgment logic
missing maintainer dpkg-deb: warning: ignoring 1 warning about the control file(s)
Reactions are currently unavailable