Problems registering, no confirmation email - see http://wiki.scribus.net/canvas/Forums_Registration
# encoding: utf-8
#
# (c) MIT your name
#
# Boilerplate for Scribus scripts
#
# For details see the README file.
try:
import scribus
except ImportError as ex:
print('This script must be run from inside Scribus')
raise ex
def main():
# Replace the following line by your code
pass
if __name__ == "__main__":
main()