We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e87b2 commit c71a710Copy full SHA for c71a710
mapall.py
@@ -94,11 +94,12 @@ def rank(self, fh):
94
def image(self, names=[]):
95
if not names:
96
names = [self.__class__.__name__]
97
+
98
for name in names:
- imgfile = os.path.join('/data/aws-map/images', '%s.png' % name)
99
+ imgfile = os.path.join('images', '%s.png' % name)
100
101
if os.path.exists(imgfile):
- imagestr = ', image="%s", shape=none ' % imgfile
102
+ imagestr = ', image="%s", shape=box ' % imgfile
103
break
104
else:
105
imagestr = ', shape=box'
0 commit comments