Skip to content

Commit 2fe9acd

Browse files
committed
minor: bump to Jiraffe 2.0.2
1 parent d2c1088 commit 2fe9acd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

jiraffe/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# -*- coding: utf-8 -*-
33

44
name = "jiraffe"
5-
__version__ = "2.0.1"
5+
__version__ = "2.0.2"

jiraffe/exploits.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import requests, os, sys
66
from bs4 import BeautifulSoup
77

8-
if sys.platform.lower() == "win32":
8+
if any(x in sys.platform.lower() for x in ['linux', 'linux2', 'win32']): # hotfix/issue#5
99
os.system('color')
1010
# Group of Different functions for different styles
1111
class style():

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# call to setup()
1616
setup(
1717
name="jiraffe",
18-
version="2.0.1",
18+
version="2.0.2",
1919
description="One stop place for exploiting all Jira instances in your proximity.",
2020
long_description=README,
2121
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)