Skip to content

Commit 1517291

Browse files
committed
fix crash on loading text program with & followed by space (issue #90)
1 parent 73ec16f commit 1517291

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pcbasic/basic/values/numbers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def to_str(self, leading_space, type_sign):
269269
def from_oct(self, oct_repr):
270270
"""Convert str in octal representation to integer."""
271271
# oct representations may be interrupted by blanks
272-
val = int(oct_repr.strip(BLANKS), 8) if oct_repr else 0
272+
val = int(oct_repr.strip(BLANKS), 8) if oct_repr.strip(BLANKS) else 0
273273
return self.from_int(val, unsigned=True)
274274

275275
def from_hex(self, hex_repr):

0 commit comments

Comments
 (0)