Skip to content

Commit

Permalink
Added = as a character to remove when generating the dot cluster name
Browse files Browse the repository at this point in the history
  • Loading branch information
kbittick3 committed Jan 24, 2014
1 parent ab03df1 commit 85678f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code2flowlib/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def _getUID(self):
else:
raise Exception()
except:
return 'cluster'+re.sub(r"[/\.\-\(\)\s]",'',self.name)+str(self.uid)
return 'cluster'+re.sub(r"[/\.\-\(\)=\s]",'',self.name)+str(self.uid)

def _allNodes(self):
'''
Expand Down

0 comments on commit 85678f8

Please sign in to comment.