Commit da7b4b5d authored by Seblu's avatar Seblu
Browse files

Fix invalid use of "is not"

parent 86320e60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -379,7 +379,7 @@ class VersionController(object):
        # print upstream
        toprint += " %sup: %s " % (c_yellow, v1)
        # print downstream
        if v2 is not "":
        if v2 != "":
            # print separator
            toprint += "%s|" % c_blue
            origin = self._packages.get(name,{}).get("downstream", "downstream")