~nataliabidart/magicicada-client/fix-travis-ubuntuone-clientdefs

« back to all changes in this revision

Viewing changes to contrib/draw-fsm

  • Committer: Natalia
  • Date: 2018-05-19 20:44:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1445.
  • Revision ID: natalia.bidart@ubuntu.com-20180519204454-fliiqyexj67r7fp9
- Rename python package to magicicadaclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
import tempfile
35
35
import time
36
36
import sys
 
37
import xdot
37
38
 
38
39
from gi.repository import Gtk as gtk
39
40
 
40
 
import xdot
41
 
from ubuntuone.syncdaemon.fsm import fsm
 
41
from magicicadaclient.syncdaemon.fsm import fsm
42
42
 
43
43
 
44
44
def dict2label(d):
114
114
    window.connect('destroy', gtk.main_quit)
115
115
    gtk.main()
116
116
 
 
117
 
117
118
if __name__ == "__main__":
118
119
    main(sys.argv[1], True)